MATLAB: Reshape of complex numbers into matrix

array

hi, I have the following I/Q and I would like to reshape them in a matrix but I get exception
x = complex(ResultI, ResultQ);
D=64;
len = length(x);
m1=reshape(x,len/D,D); %generating matrix ---> each row showing range info for one period AND each column showing number of periods

Best Answer

If you have the communications systems toolbox, use buffer()
Related Question