Randomly makes matrix rows as one vector
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello all, I would like to work on a marix that should be converted to on vector (by rows), but my question here is how I can convert these rows in my matrix to one vector but randomly sorting, I mean that it should be not [row1, row2,.....] but like for example [row2, row8, ... so on].
0 Kommentare
Akzeptierte Antwort
per isakson
am 19 Jan. 2015
Hint
M = magic( 7 );
R = M( randperm(7), : );
2 Kommentare
Roger Stafford
am 19 Jan. 2015
Bearbeitet: Image Analyst
am 19 Jan. 2015
Add on the line
M_new = reshape(R',1,[]);
to make it "on(e) vector".
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!