How can I convert an array to a matrix?
显示 更早的评论
I have an array like B=[2 3 1 5 2 8 1 7 9 1 5 2 4 6 3 9 3 1 7 0 7 2 8 6].
I need this elements in a matrix called A like
A=
2 3 1 5 2 8 1 7
9 1 5 2 4 6 3 9
3 1 7 0 7 2 8 6
Please help...
采纳的回答
更多回答(2 个)
Andreas Goser
2013-1-29
0 个投票
In MATLAB all arrays are matrices... You may achieve what you need by using the RESHAPE command.
Martin
2013-1-29
0 个投票
As Jose mentioned the reshape function is a really good one. The help file on that one is really useful for explaining how it works.
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!