Borrar filtros
Borrar filtros

hi , my result show as following 1.3204e-05 , i need show it as numerical value

2 visualizaciones (últimos 30 días)
hi , my result show as following 1.3204e-05 , i need show it as numerical value
  2 comentarios
Stephen23
Stephen23 el 11 de Ag. de 2016
Editada: Stephen23 el 11 de Ag. de 2016
@mohammed elmenshawy: most likely | 1.3204e-05| is already a numeric value, assuming that the function is not outputting a string or something like that. Read this to know why the output is numeric, regardless of how it is displayed:

Iniciar sesión para comentar.

Respuesta aceptada

dpb
dpb el 11 de Ag. de 2016
1.3204e-05 is a numerical value, if you want a specific format other than default look at
doc format
to make the change global in the workspace/command window or use fprintf or num2str to display...
>> x=1.3204e-05;
>> num2str(x,'%.10f')
ans =
0.0000132040
>>

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by