how to combine a set of data into one cell

1 view (last 30 days)
andrew
andrew on 17 Jul 2013
I currently have a matrix 1x361 each column is an 11x2 matrix. How can I print the 11x2 matrix into one cell.
for example:
within matrix desired output
1 2 ===> (1,2)
3 4 ===> (3,4)
5 6 ===> (4,5)
i have the following code for one 11x2 matrix how do i do it for all:
A = percent;
A = num2cell(A);
for i=1:size(A,1)
A{i,1} = [num2str(A{i,1}),', ',num2str(A{i,2})];
A{i,2}=[];
A;
end
% =

Answers (1)

Andrei Bobrov
Andrei Bobrov on 17 Jul 2013
num2cell(A,2)

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!