how to combine a set of data into one cell

1 次查看(过去 30 天)
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
% =

回答(1 个)

Andrei Bobrov
Andrei Bobrov 2013-7-17

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by