How to rearrange 2x5 matrix while keeping the size the same?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Wei Yow
el 28 de Abr. de 2023
Comentada: Wei Yow
el 28 de Abr. de 2023
Hi,
How do I tranpose such that
x = [1, 5, 9, 4, 8; 3, 7, 2, 6, 10] to
x =[1, 3, 5, 7, 9 ; 2, 4, 6, 8, 10]
while keeping the 2x5 matrix? This matrix was returned from a function reading a file consisting of a row-oriented data.
thank you.
0 comentarios
Respuesta aceptada
Más respuestas (2)
Steven Lord
el 28 de Abr. de 2023
x = [1, 5, 9, 4, 8; 3, 7, 2, 6, 10]
y = reshape(x(:), flip(size(x))).'
For comparison:
expected =[1, 3, 5, 7, 9 ; 2, 4, 6, 8, 10]
Kevin Holly
el 28 de Abr. de 2023
x = [1, 5, 9, 4, 8; 3, 7, 2, 6, 10]
x2 = reshape(sort(reshape(x,1,[])),size(x,1),size(x,2))
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!