Could anyone help me to solve the issue.
2 views (last 30 days)
Show older comments
I am having matrix
A=[1 2;
2 3;
2 4]
when i use the command
NN = num2cell(num2cell(A),2)
partdisp(NN)
i am getting the result as
NN =
{1x2 cell}
{1x2 cell}
{1x2 cell}
The formation of clusters :
{1} {2}
{2} {3}
{2} {4}
but i need to have the result in the following manner
NN =
{1x1 cell}
{1x1 cell}
{1x1 cell}
The formation of clusters :
{1 2}
{2 3}
{2 4}
could anyone please help me on it.
0 Comments
Accepted Answer
madhan ravi
on 13 Sep 2019
Edited: madhan ravi
on 13 Sep 2019
NN = num2cell(num2cell(A,2),2)
4 Comments
madhan ravi
on 19 Sep 2019
mat2cell(A,[1,1,1],[2,3,1,1]) % see the documentation and learn how to use it
More Answers (1)
Fabio Freschi
on 13 Sep 2019
For your case
NN = mat2cell(A,[1 1 1],2)
A bit more general
NN = mat2cell(A,ones(size(A,1),1),size(A,2))
5 Comments
Adam
on 13 Sep 2019
Yeah, even just opening a question and typing your answer can take long enough that when it's posted there are 2 or 3 other answers too. It's perfectly fine though.
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!