how convert cell array to matrix matlab

1 次查看(过去 30 天)
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