how to create a single column matrix from two matrices in MATLAB

조회 수: 1 (최근 30일)
Irfan Ullah
Irfan Ullah 2021년 3월 27일
편집: Calequela Manuel 2022년 6월 21일
Hi all,
I have tow matrcies A=[1,2,3,4] and B= [7,4,6]. I want to combine it in a single column matrix.
Can anyone help me in this regrad?
thanks in advance
  댓글 수: 1
Calequela Manuel
Calequela Manuel 2022년 6월 21일
편집: Calequela Manuel 2022년 6월 21일
A=[1,2,3,4];
B= [7,4,6];
Resolution:
T = ([A B])'
T = ([1 2 3 4 7 4 6])'
T = 1
2
3
4
7
4
6

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

답변 (1개)

Srinidhi
Srinidhi 2021년 3월 27일
A=[1,2,3,4];
B= [7,4,6];
C = cat(2,A,B) % or cat(2,B,A)
C = C'
  댓글 수: 4
Irfan Ullah
Irfan Ullah 2021년 3월 27일
@Srinidhi Thank you very much. The provided code has worked.

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

카테고리

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

태그

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by