reshaping a matrix dimension
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, I have a 2x60 matrix and I want to reshape it to a 120x1 matrix. How can I do that?
0 Commenti
Risposta accettata
Star Strider
il 24 Dic 2014
It depends on how you want the (120x1) matrix to look. Here are two possibilities:
A = [1:5; 6:10];
B1 = reshape(A, [], 1);
B2 = reshape(A', [], 1);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!