Clear Filters
Clear Filters

how to combine different matrix dimensions into a single matrix ?

21 views (last 30 days)
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.

Answers (1)

Rik
Rik on 16 May 2018
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 Comment
Rik
Rik on 27 May 2018
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.

Sign in to comment.

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Products


Release

R2016a

Community Treasure Hunt

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

Start Hunting!