Borrar filtros
Borrar filtros

Shuffle n rows of a matrix

4 visualizaciones (últimos 30 días)
REMYA K
REMYA K el 15 de Nov. de 2020
Comentada: REMYA K el 16 de Nov. de 2020
I have a 5*5 matrix, I want to shuffle first 3 rows of this but last two rows should remains same..any body please help.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 15 de Nov. de 2020
Try this
M = rand(5);
idx = [randperm(3) 4 5];
M_shuffled = M(idx, :)
  5 comentarios
Ameer Hamza
Ameer Hamza el 15 de Nov. de 2020
Yes, you can do it like this
M = rand(10);
n = 3;
m = 7;
idx = [1:n-1 randperm(m-n+1)+(n-1) m+1:size(M,1)];
M_shuffled = M(idx, :)
REMYA K
REMYA K el 16 de Nov. de 2020
It works...Thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by