Borrar filtros
Borrar filtros

how to randomize the column position of a matrix?

1 visualización (últimos 30 días)
Daud
Daud el 9 de Sept. de 2012
suppose A=[D G H K ... O];
i want to do C=[H D O .... G.. K]
i also want to keep the information about the order of randomization to use it other matrix further manipulation.

Respuesta aceptada

Dishant Arora
Dishant Arora el 9 de Sept. de 2012
ind=randperm(size(A,2));
C=zeros(size(A));
C=A(:,ind);
ind preserves the order of randomization.
  2 comentarios
Jan
Jan el 9 de Sept. de 2012
Editada: Jan el 9 de Sept. de 2012
The pre-allocation by zeros is useless here. A pre-allocation is useful only, if the array would grow iteratively.
Dishant Arora
Dishant Arora el 9 de Sept. de 2012
Thanks jan, I must take care of it in future.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing 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