Data arrangmnet of combining 2 variables

조회 수: 1 (최근 30일)
Avishka G
Avishka G 2020년 4월 2일
댓글: Ameer Hamza 2020년 4월 3일
I have 3 variables (X,Y,V) which I want to combine into one, in a way that the first column of X,Y and V are columned next to each other and then the second column of X,Y,V are next to each other and so on.
An example of the code:
V=magic(6)
X=magic(6)
Y=magic(5)

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 4월 2일
Try this
X = ones(6).*(1:6);
Y = 2*ones(6).*(1:6);
Z = 3*ones(6).*(1:6);
M = permute(cat(3,X,Y,Z), [1 3 2]);
M = reshape(M, 6, []);
  댓글 수: 2
Avishka G
Avishka G 2020년 4월 3일
it work fine thanks!
Ameer Hamza
Ameer Hamza 2020년 4월 3일
Glad to be of help.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by