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

Answers (1)
Ameer Hamza
on 11 Nov 2020
Xtrain = cell2mat(Xtrain);
or also
Xtrain = vertcat(Xtrain{:});
Categories
Find more on 基本的な設定 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!