How to turn a matrix into a Multidimensional Array?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Tristan
il 28 Ott 2013
Modificato: Andrei Bobrov
il 28 Ott 2013
for example if I have:
>> A=[2 8; 0 5]
A =
2 8
0 5
and I want to separate each row so that A=
A(:,:,1) =
2 8
A(:,:,2) =
0 5
0 Commenti
Risposta accettata
Andrei Bobrov
il 28 Ott 2013
Modificato: Andrei Bobrov
il 28 Ott 2013
permute(A,[3 2 1])
or
reshape(A.',1,size(A,2),[])
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!