To approximate an expression with exact values

1) 1.0/3*exp(1)*sin(2)
ans =
0.8239
BUT when I used command,
2) float(1.0/3*exp(1)*sin(2))
Error using float (line 46)
The input argument to float was not a supported type. The only recognized strings are 'single'
and 'double'. The input type was 'double'.
How can I get an expression with exact values?

 Respuesta aceptada

Walter Roberson
Walter Roberson el 18 de Abr. de 2014
You do not need the float(). You need
format long g
1.0/3*exp(1)*sin(2)

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 18 de Abr. de 2014

Respondida:

el 18 de Abr. de 2014

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by