putting some matrix in a cell arrays
11 views (last 30 days)
Show older comments
I have 3 matrices:
m1[5x4];
m2[5x4];
m3[5x3];
I want to put them in a cell W{i}
for i=1:3
in a way W{1}=m1; W{2}=m2 and W{3}=m3
How could I do it? Thx
1 Comment
Stephen23
on 23 Sep 2017
You already did:
W{1}=m1;
W{2}=m2;
W{3}=m3;
While there are ways of doing this in a loop, you should learn to write code without using such slow and buggy methods:
Answers (2)
Star Strider
on 23 Sep 2017
‘How could I do it?’
You just did it!
W{1}=m1;
W{2}=m2;
W{3}=m3;
0 Comments
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!