Converting complex cells into simple cell arrays

조회 수: 1 (최근 30일)
lucksBi
lucksBi 2018년 9월 6일
댓글: lucksBi 2018년 9월 7일
HI
i have a question that how can i convert complex cell arrays into simple ones?
array = {[1x2 cell' char(10) ' ' char(10) '],[1x3 cell' char(10) ' ' char(10) '],[1x2 cell' char(10) ' ' char(10) ']}
in which
array{1,1}={0.7,0.3}
array{1,2}={1,0.6,0.5}
array{1,3}= {1,0.3}
i want to convert into array like this:
newArray= {[0.7,0.3],[1,0.6,0.5],[1,0.3]}

채택된 답변

OCDER
OCDER 2018년 9월 6일
array{1,1}={0.7,0.3};
array{1,2}={1,0.6,0.5};
array{1,3}= {1,0.3};
newArray = cellfun(@(x) cell2mat(x), array, 'un', 0);
newArray =
[1×2 double] [1×3 double] [1×2 double]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by