convert matrix and horizontally catenate
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Damith
el 16 de Jul. de 2014
Comentada: Damith
el 16 de Jul. de 2014
Hi,
I need to convert this matrix A to
A=[1 2 3 4 5 6
7 8 9 10 11 12
13 14 15 16 17 18
19 20 21 22 23 24];
A = 1 2 3 4 5 6 7 8 9 10...24;
How can I perform this in matlab? Any help is appreciated.
Thanks.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 16 de Jul. de 2014
Editada: Azzi Abdelmalek
el 16 de Jul. de 2014
A=A'
A=A(:)'
Or
reshape(A',1,[])
Más respuestas (0)
Ver también
Categorías
Más información sobre Encryption / Cryptography en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!