Displaying a group of vectors on separate lines

7 ビュー (過去 30 日間)
Aleem Andrew
Aleem Andrew 2021 年 2 月 26 日
回答済み: the cyclist 2021 年 2 月 26 日
I am trying to display a number of vectors in separate lines. How can you create a matrix with each its rows equal to one a group of 1*n vectors? Alternately, can you use the display function to do this? I have tried using for example the command disp([a b]) but this displays the vectors all on a single line.
a = [1 2 3]; b = [4 5 6]; c = [4 5 6];
disp([a b c])

採用された回答

the cyclist
the cyclist 2021 年 2 月 26 日
You can use a semicolon to concatenate vertically
[a; b; c]

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by