double型配列をcell型配列に変更する方法
106 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Koki Hashiguchi
am 28 Sep. 2019
Kommentiert: Kenta
am 28 Sep. 2019
xlsread関数で、
[num,txt,raw] = xlsread('file_name');
とコードを書いた際、numはdouble型、txtとrawはcell型として配列が生成されます。
数値データであるdouble型配列のnumを、cell型に変換することは出来ますでしょうか。
0 Kommentare
Akzeptierte Antwort
Kenta
am 28 Sep. 2019
こちらのnum2cellで、doubleからcell型に変換できると思います。
例)a = magic(3);c = num2cell(a)
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!