how to make 10x10x10 dobule?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Sierra
am 12 Nov. 2022
Beantwortet: Image Analyst
am 12 Nov. 2022
I want to make 10x10x10 dobule.
but only i can make is 10x10 dobule.
please let me know
tanks.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 12 Nov. 2022
If you already have your 10x10x10 array and it is of some different numerical class (i.e. not a cell array, structure, table, etc.)
originalArray = uint8([1,2,4,7]);
whos originalArray
then you can do
dblArray = double(originalArray);
whos dblArray
See? It's now a double.
What are you starting with? Nothing or an existing array?
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Types 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!