How to convert a column matrix 200 X 1 to a matrix 10 X 20 mat lab
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ricardo Gutierrez
el 12 de Mzo. de 2018
Comentada: Ricardo Gutierrez
el 13 de Mzo. de 2018
Good morning.
How to convert a column matrix 200 X 1 to a matrix 10 X 20
Thank you
2 comentarios
Respuesta aceptada
James Tursa
el 12 de Mzo. de 2018
Editada: James Tursa
el 12 de Mzo. de 2018
Either
result = reshape(your_matrix,10,20)
or this
result = reshape(your_matrix,20,10).'
depending on how you want the elements ordered in the result.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!