how can I convert a matrix to an array
290 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vishnu M S
el 16 de En. de 2013
Comentada: Berk Kucukoglu
el 18 de Feb. de 2022
I have a matrix say, A=
1 8 4 6
2 1 7 5
8 3 3 9 .
I need the elements in an array called B like B=[1 8 4 6 2 1 7 5 8 3 3 9].
Please help me.
1 comentario
Respuesta aceptada
Thorsten
el 16 de En. de 2013
Editada: Thorsten
el 16 de En. de 2013
B = A';
B = B(:)';
1 comentario
Berk Kucukoglu
el 18 de Feb. de 2022
This worked for me, therefore I upvoted. Thank you.
However, I don't understand why it works. And is it always guaranteed to work between updates? Like, is this a bug or a feature? :)
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!