Conversion of an matrix array

7 visualizzazioni (ultimi 30 giorni)
Ajay Kumar
Ajay Kumar il 25 Gen 2019
Commentato: madhan ravi il 28 Gen 2019
How to convert a 50x50 matrix into 1x2500 matrix in matlab?

Risposta accettata

madhan ravi
madhan ravi il 25 Gen 2019
reshape(matrix,1,[])
  2 Commenti
Walter Roberson
Walter Roberson il 25 Gen 2019
Note that this will proceed column by column, giving
 
[M(1,1), M(2,1), M(3,1), ... M(50,1), M(1,2), M(2,2), ... ]
This is one of the very fastest operations in MATLAB, as the data is not change: there is just a change to the header saying how to interpret the data.
If you want to proceed row by row,
[M(1,1), M(1,2), M(1,3), ... M(1,50), M(2,1), M(2,2) ....]
then you need
reshape(YourMatrix.', 1, []);
madhan ravi
madhan ravi il 28 Gen 2019
True sir Walter , thank you!

Accedi per commentare.

Più risposte (1)

madhan ravi
madhan ravi il 25 Gen 2019
Second way:
matrix(:).'

Categorie

Scopri di più su Loops and Conditional Statements 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!

Translated by