필터 지우기
필터 지우기

How do I convert my cell array into a cell array of doubles?

조회 수: 2 (최근 30일)
lil brain
lil brain 2022년 4월 13일
답변: Voss 2022년 4월 13일
Hi,
I have a cell array of cells (see attachment) and need to covert each of the cells into numeric arrays for further processing.
How can I do that in one go?
Thanks!

채택된 답변

Voss
Voss 2022년 4월 13일
S = load('pre_data_1.mat')
S = struct with fields:
pre_data1: {2×1 cell}
S.pre_data1
ans = 2×1 cell array
{13757×21 cell} {13150×21 cell}
S.pre_data1 = cellfun(@cell2mat,S.pre_data1,'UniformOutput',false);
S.pre_data1
ans = 2×1 cell array
{13757×21 double} {13150×21 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