No BSD License  

Highlights from
Parallel to Series

from Parallel to Series by fawzy fawzy
Converter form parallel to serial

parallel2series(info)
function y = parallel2series(info)

% Determine the size of the information
[r,c]=size(info);
% 
m=[];

for j = 1:c
    for i = 1:r
        m(r*(j-1)+i) = info(i,j);
    end
end

y = m;

Contact us at files@mathworks.com