merge two matrices after odd rows

조회 수: 3 (최근 30일)
Keren Grinberg
Keren Grinberg 2022년 3월 3일
댓글: Keren Grinberg 2022년 3월 3일
I have 2 matrices:
A=[1 1;1 1;1 1]
B=[2 3;4 5;6 7]
i want to get -
C=[1 1;2 3;1 1;4 5;1 1;6 7]
(ccombine every row of B after odd row in A)
i tried:
result = reshape(([A B].'),[],1)
but it gives me:
C=
1
1
2
3
1
1
4
5
....

답변 (1개)

Alan Stevens
Alan Stevens 2022년 3월 3일
Here's one way:
A=[1 1;1 1;1 1];
B=[2 3;4 5;6 7];
AB = [A B]';
C = reshape(AB,2,6)'
C = 6×2
1 1 2 3 1 1 4 5 1 1 6 7

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by