필터 지우기
필터 지우기

I am trying to convert the cell arrays tables into arrays doubles, as I have 349*1 cell arrays.

조회 수: 1 (최근 30일)
I am trying to convert the cell arrays tables into arrays doubles, as I have 349*1 cell arrays.
So I need to apply a loop to convert all cell tables into doubles.
How can I save all these converted values as it is, like this format as shown given below.
thanks in advance.

채택된 답변

KSSV
KSSV 2021년 5월 19일
편집: KSSV 2021년 5월 19일
Let T be your cell array which has table in each cell.
n = length(T) ;
iwant = cell(N,1) ;
for i = 1:n
iwant{i} = table2array(T{i}) ;
end
celldisp(iwant)

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by