필터 지우기
필터 지우기

How to open a cell array??

조회 수: 2 (최근 30일)
Gabriela Dorneles
Gabriela Dorneles 2021년 3월 14일
댓글: Gabriela Dorneles 2021년 3월 15일
I have teh following cell array. Each cell is a row of 6 or 8 colmns.
I needed a it to put each cell array in one row and make it complete the rest of the cell with zeros ou NaN.
Like:
{ 1 2 3 4 5 6} ; {1 2 3 4 5 6 7 8} ; { 1 2 3 4 5 6}
1 2 3 4 5 6 0 0
1 2 3 4 5 6 7 8
1 2 3 4 5 6 0 0

채택된 답변

ANKUR KUMAR
ANKUR KUMAR 2021년 3월 15일
out=zeros(length(result_pettitt),max(cellfun(@(x) length(x), result_pettitt)));
for kk=1:length(result_pettitt)
out(kk,1:length(result_pettitt{kk}))=cell2mat(result_pettitt{kk});
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by