how to combine a set of data into one cell

조회 수: 1 (최근 30일)
andrew
andrew 2013년 7월 17일
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