how to combine different matrix dimensions into a single matrix ?

21 次查看(过去 30 天)
for example i having m1=10*2, m2=10*3, m3=10*6; i want m=[m1,m2,m3] but due to different dimension it is not getting so any possibility to combine.

回答(1 个)

Rik
Rik 2018-5-16
Matlab arrays must be rectangular. The concatenation you show is possible, so it should only give errors if you dimension description is wrong, or if the data types are not the same.
m1=rand(10,2);
m2=rand(10,3);
m3=rand(10,6);
%concatenating to cell always works:
m_cell={m1,m2,m3};
%concatenation to a normal array should work with your example:
m=[m1,m2,m3];
  1 个评论
Rik
Rik 2018-5-27
Did this suggestion solve your problem? If so, please consider marking it as accepted answer. It will make it easier for other people with the same question to find an answer. If this didn't solve your question, please comment with what problems you are still having.

请先登录,再进行评论。

类别

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

标签

产品


版本

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by