Turning a column vector into a rectangular matrix
2 views (last 30 days)
Show older comments
Matt Karlson
on 24 Nov 2015
Commented: Matt Karlson
on 24 Nov 2015
I have a column vector of data and would like to break it up into a rectangular matrix. However, I would need to add NaN elements in order to make it rectangular; I have multiples pages of the column, how can I do this?
0 Comments
Accepted Answer
John D'Errico
on 24 Nov 2015
Edited: John D'Errico
on 24 Nov 2015
I wrote a wreshape tool some years ago. It pads as necessary, and allows you to specify the pad element. Not sure if I posted it on the file exchange, and I'm feeling too lazy to post it now. So I'll just attach it.
A = wreshape(1:5,[2 4],'pad',NaN)
A =
1 3 5 NaN
2 4 NaN NaN
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!