function vector = H0(m) vector(1:m)=0; for i=1:m if(i>=(m/4) & i<=((3*m/4)-1)) vector(i) = 0; else vector(i) = sqrt(2); end end vector = vector';