how convert cell array to matrix matlab

조회 수: 1 (최근 30일)
yasmeen hadadd
yasmeen hadadd 2016년 8월 22일
댓글: yasmeen hadadd 2016년 8월 22일
for m=1:100
Heart_pulse_arrays{m} = imresize(Heart_pulse_arrays{m}, [1 Lp_mean], 'bicubic');
Heart_pulse_arrays_values= Heart_pulse_arrays{m};
end
i want Heart_pulse_arrays_values matrix with size N X M

채택된 답변

KSSV
KSSV 2016년 8월 22일
doc cell2mat...
Eg:
C = {[1], [2 3 4];
[5; 9], [6 7 8; 10 11 12]}
A = cell2mat(C) ;

추가 답변 (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