how to combine a set of data into one cell

1 visualizzazione (ultimi 30 giorni)
andrew
andrew il 17 Lug 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
% =

Risposte (1)

Andrei Bobrov
Andrei Bobrov il 17 Lug 2013
num2cell(A,2)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by