Borrar filtros
Borrar filtros

HOW CAN CREATE A MATRIX FROM A SINGLE ROW?

1 visualización (últimos 30 días)
simone zappalà
simone zappalà el 13 de Mzo. de 2022
Comentada: John D'Errico el 13 de Mzo. de 2022
I have 12 elements distributed on a single row, i've to put them on a 3x4 matrix, how i do that?

Respuesta aceptada

Arif Hoq
Arif Hoq el 13 de Mzo. de 2022
use reshape function.
A=randi(100,1,12)
A = 1×12
99 27 87 54 85 99 10 14 94 9 80 42
output=reshape(A,3,4)
output = 3×4
99 54 10 9 27 85 14 80 87 99 94 42
  1 comentario
John D'Errico
John D'Errico el 13 de Mzo. de 2022
With only the caveat that the solution offerd by @Arif Hoq puts the elements into the matrix going down the columns. If @simone zappalà wanted to put the elements going across rows from the original vector, then this subtle change would do the trick:
A = [99 27 87 54 85 99 10 14 94 9 80 42];
output=reshape(A,4,3).'
output = 3×4
99 27 87 54 85 99 10 14 94 9 80 42

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices 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