?? fdecode.m
字號:
function out=fdecode(bin,description,dvec,bts);
%
% Fast parameter decoding routine that does not
% recalculate the description matrix
%
% out=fdecode(bin,description)
%
[num_param L]=size(description);
for i=1:num_param
[D L]=size(bin);
chrom=bin(1,1:bts(i,1));
bin=bin(1,bts(i,1)+1:L);
out(1,i)=fubin(chrom,bts(i,1),dvec);
out(1,i)=(out(1,i)*description(i,2))+description(i,1);
end
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -