Info

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

Rearranging column of m by 1 matrix.

1 visualización (últimos 30 días)
dipak sanap
dipak sanap el 21 de Oct. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have m by 1 matrix and 95 is the factor of m, I want to rearrange it as, First 95 rows as a first column, 96 to 190 as second column and so on.
Any help would be appreciated. Thank you very much.

Respuestas (2)

Thorsten
Thorsten el 21 de Oct. de 2015
reshape(reshape(D, 2, [])', 1, [])
  2 comentarios
dipak sanap
dipak sanap el 21 de Oct. de 2015
Hey Thorsten, Thank you very much for reply, I was oblivious to reshape command. It works fine now.
Thorsten
Thorsten el 21 de Oct. de 2015
Editada: Thorsten el 21 de Oct. de 2015
Hey dipak, that's fine. Please formally accept my answer.

Jan
Jan el 21 de Oct. de 2015
reshape(D, 95, [])

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by