how to equlaize cell arrays in matlab?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I have a cellarray with length of 3 and I want to make for loop with another cell array with length of 6 , so how can I add extra 3 cells for the first array inorder to make the 2 cell arrays equal and to use my for loop in matlab??
댓글 수: 0
채택된 답변
Pedro Villena
2012년 10월 30일
편집: Pedro Villena
2012년 10월 30일
A = [A cell(size(A))]; %%to duplicate a row array
A = [A; cell(size(A))]; %%to duplicate a column array
A = [A cell(1,3)]; %%to add 3 columns
A = [A; cell(3,1)]; %%to add 3 rows
추가 답변 (1개)
Pedro Villena
2012년 10월 30일
편집: Pedro Villena
2012년 10월 30일
type= { '12' '62' '5' };
colour={'red' 'green' 'yellow' 'brown' 'blue' 'black'};
result = type;
for i=length(type)+1:length(colour),
result(i)={'0'};
end
or
result = type;
result(length(type)+1:length(colour)) = {'0'}
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!