how convert cell array to matrix matlab

2 ビュー (過去 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) ;
  1 件のコメント
yasmeen hadadd
yasmeen hadadd 2016 年 8 月 22 日
thank you very very much

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by