simple way of matrix array resorting

3 visualizaciones (últimos 30 días)
Hyun-su Kim
Hyun-su Kim el 12 de Dic. de 2019
Comentada: Hyun-su Kim el 12 de Dic. de 2019
I have three matrix, A, B, and C.
A = [a1 a2 a3 ...], B = [b1 b2 b3 ...], C = [c1 c2 c3 ...]
I want to create a matrix Q which look like
a1 b1 c1
a2 b2 c2
a3 b3 c3
...
What's simplist code?
Thank you.

Respuesta aceptada

Stephen23
Stephen23 el 12 de Dic. de 2019
Robust:
Q = [A(:),B(:),C(:)]

Más respuestas (2)

Guillaume
Guillaume el 12 de Dic. de 2019
Assuming your 3 vectors are row vectors (i.e. 1xN), then
result = [A; B; C].' %vertically concatenate then transpose

Adam
Adam el 12 de Dic. de 2019
Q = [A', B', C'];

Categorías

Más información sobre Creating and Concatenating 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