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.
Irfan Ullah
Irfan Ullah 2021 年 3 月 27 日
@Walter Roberson Thanks for your comment

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by