Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Sorting a m x n matrix

1 visualización (últimos 30 días)
t4741
t4741 el 7 de Sept. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have an M x N array for example ;
[1;2;3;4;5;6;7;8;9]
and i want to sort it into the format where the first three values become the first column,then 4 5 6 are the second column etc. So it will output
[1 4 7; 2 5 8; 3 6 9]
Is there a function that can do this, or how should I approach this?

Respuestas (1)

madhan ravi
madhan ravi el 7 de Sept. de 2019
reshape([1;2;3;4;5;6;7;8;9],3,[])

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by