How can I convert an array to a matrix?
Mostra commenti meno recenti
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...
Risposta accettata
Più risposte (2)
Andreas Goser
il 29 Gen 2013
0 voti
In MATLAB all arrays are matrices... You may achieve what you need by using the RESHAPE command.
Martin
il 29 Gen 2013
0 voti
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.
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!