Randomly makes matrix rows as one vector

1 visualización (últimos 30 días)
Abe
Abe el 19 de En. de 2015
Comentada: Abe el 22 de En. de 2015
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].

Respuesta aceptada

per isakson
per isakson el 19 de En. de 2015
Hint
M = magic( 7 );
R = M( randperm(7), : );
  2 comentarios
Roger Stafford
Roger Stafford el 19 de En. de 2015
Editada: Image Analyst el 19 de En. de 2015
Add on the line
M_new = reshape(R',1,[]);
to make it "on(e) vector".
Abe
Abe el 22 de En. de 2015
Thank you guys for these ideas.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by