Suppose i have a matrix (2x4) A=[1 2 3 4;5 6 7 8] and i want to change it into this matrix [1 2;3 4;5 6;7 8]. How to do that?
5 次查看(过去 30 天)
显示 更早的评论
A= [1 2 3 4;5 6 7 8]
Output needed
B= [1 2;3 4;5 6;7 8]
0 个评论
采纳的回答
更多回答(2 个)
John D'Errico
2023-6-17
编辑:John D'Errico
2023-6-17
help transpose
help reshape
Essentially, you need to learn how elements are stored in a matrix. You need to learn to manipulate the shapes of the matrices you will work with. If you don't understand this, well, then it is time to learn!
0 个评论
Image Analyst
2023-6-17
@Payel this is super basic. You're not going to get very far, very fast if you have to ask Answers volunteers every time you want to do something as simple as this. You need to learn it yourself.
To learn other fundamental concepts, invest a quick 2 hours of your time here:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!