Convert data type from int to double in Matlab app designer
370 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Abdulla Alsowaidi
el 28 de Ag. de 2018
Comentada: Abdulla Alsowaidi
el 11 de Sept. de 2018
How can I change the output data type from int. to double in Matlab designer application?
0 comentarios
Respuesta aceptada
Titus Edelhofer
el 28 de Ag. de 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
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!