Convert data type from int to double in Matlab app designer
370 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Abdulla Alsowaidi
il 28 Ago 2018
Commentato: Abdulla Alsowaidi
il 11 Set 2018
How can I change the output data type from int. to double in Matlab designer application?
0 Commenti
Risposta accettata
Titus Edelhofer
il 28 Ago 2018
Hi Abdulla,
generally speaking by using "double":
x = int32(42); % x is an integer
xd = double(x); % x is a double
But that is not related to app designer ...
Titus
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!