フィルターのクリア

convert column vectors to 2D array

5 ビュー (過去 30 日間)
John
John 2012 年 10 月 2 日
Hello,
If you had two column vectors (2 columns of data) in the workspace, how could you convert this to a 2D array?
Thanks for your help

回答 (2 件)

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 2 日
編集済み: Azzi Abdelmalek 2012 年 10 月 2 日
a=[1;2;3]
b=[11;12;13]
v=[a'; b'] % vertical concatenation
w=[a b ] % horizontal concatenation

Wayne King
Wayne King 2012 年 10 月 2 日
Also, you can use cat()
x = randn(100,1);
y = randn(100,1);
z = cat(2,x,y);

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by