cell to matrix conversion
Show older comments
I have following cell matrix X(1x4):
[] [] [1,2,3;1,3,4] [1,2,3,4;1,3,4,2]
how do i split them into four seperate matrices?
Accepted Answer
More Answers (1)
Wayne King
on 29 May 2013
Edited: Wayne King
on 29 May 2013
X = {[] [] [1,2,3;1,3,4] [1,2,3,4;1,3,4,2]};
[A,B,C,D] = deal(X{:});
Note that A and B are empty as expected.
4 Comments
John
on 29 May 2013
John
on 29 May 2013
Azzi Abdelmalek
on 29 May 2013
Then just use
X{1}
X{2}
X{3}
X{4}
John
on 29 May 2013
Categories
Find more on Loops and Conditional Statements 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!