how to make a Mx1xN matrix to MxN
Show older comments
just as the title.
Thanks in advanced.
Answers (2)
Fangjun Jiang
on 29 Aug 2011
a=rand(3,1,2);
b=reshape(a,3,2);
or
c=squeeze(a);
Florin Neacsu
on 29 Aug 2011
2 votes
Hi,
You can also try squeeze.
Regards, Florin
Categories
Find more on Resizing and Reshaping Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!