from
Parallel to series
by fawzy fawzy
Fast with one for loop parallel to series function
|
| parallel2series(x)
|
function y = parallel2series(x)
% Determine the size of the information
[r,c]=size(x);
for j = 1:c
y(((j-1)*r) + 1 : (j*r)) = x(1:r,j);
end
|
|
Contact us at files@mathworks.com