相关代码 |
|
function new=include(temp,inc,ov) % % include.m % % Function to build up a process data matrix given a binary % "Include" vector. % numcol=sum(inc); [D L]=size(temp); new=zeros(D,numcol); sum=1; for i = 1 : L if inc(i)==1 and ov ~= i new(:,sum)=temp(:,i); sum=sum+1; end end
相关资源 |
|