how convert cell array to matrix matlab

1 vue (au cours des 30 derniers jours)
yasmeen hadadd
yasmeen hadadd le 22 Août 2016
Commenté : yasmeen hadadd le 22 Août 2016
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

Réponse acceptée

KSSV
KSSV le 22 Août 2016
doc cell2mat...
Eg:
C = {[1], [2 3 4];
[5; 9], [6 7 8; 10 11 12]}
A = cell2mat(C) ;
  1 commentaire
yasmeen hadadd
yasmeen hadadd le 22 Août 2016
thank you very very much

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by