simple way of matrix array resorting

조회 수: 1 (최근 30일)
Hyun-su Kim
Hyun-su Kim 2019년 12월 12일
댓글: Hyun-su Kim 2019년 12월 12일
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.

채택된 답변

Stephen23
Stephen23 2019년 12월 12일
Robust:
Q = [A(:),B(:),C(:)]

추가 답변 (2개)

Guillaume
Guillaume 2019년 12월 12일
Assuming your 3 vectors are row vectors (i.e. 1xN), then
result = [A; B; C].' %vertically concatenate then transpose
  댓글 수: 1
Hyun-su Kim
Hyun-su Kim 2019년 12월 12일
It gives me 1xn matrix... sorry

댓글을 달려면 로그인하십시오.


Adam
Adam 2019년 12월 12일
Q = [A', B', C'];
  댓글 수: 1
Hyun-su Kim
Hyun-su Kim 2019년 12월 12일
I want to have a 3xn matrix.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by