How to append matrices? For example, if I have a 3*3 matrix and a 1*3 matrix, how to append them such that the resultant is a 4*3 matrix?

1 次查看(过去 30 天)
3*3=[1 2 3;2 3 4;4 5 6]
1*3=[1 2 3]
4*3=[1 2 3;2 3 4;4 5 6;1 2 3]

回答(1 个)

madhan ravi
madhan ravi 2019-7-29
编辑:madhan ravi 2019-7-29
a=[1 2 3;2 3 4;4 5 6];
b=[1 2 3];
c=[a;b] % 4 X 3
Gives:
c =
1 2 3
2 3 4
4 5 6
1 2 3
>>

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by