cell配列に関する問題

添付画像のように、cell配列の中の配列がdouble型にならず、 実行できません。
どうすれば解決できますでしょうか。
例)[51,0.3037,0...] →1×6 double
[28,0.1266,0...] →1×6 double ...

Réponses (1)

Ameer Hamza
Ameer Hamza le 11 Nov 2020

1 vote

Xtrain = cell2mat(Xtrain);
or also
Xtrain = vertcat(Xtrain{:});

Catégories

En savoir plus sur 基本的な設定 dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!