from double to single precision
142 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Beaya
el 27 de Oct. de 2013
Comentada: Azzi Abdelmalek
el 27 de Oct. de 2013
I want to calcute this equation x= 3.0*(4.0/3.0-1.0)-1.0 but using single precision instead of double. How do I do switch to single?
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 27 de Oct. de 2013
single(x)
3 comentarios
Azzi Abdelmalek
el 27 de Oct. de 2013
x = 1 - 3*(4/3 - 1)
a=single(x)
whos x a
and see the difference
Azzi Abdelmalek
el 27 de Oct. de 2013
To get the smallest double and single number
realmin('double')
realmin('single')
Más respuestas (0)
Ver también
Categorías
Más información sobre Particle & Nuclear Physics 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!