Convert Value from form to another

3 visualizaciones (últimos 30 días)
Majid Al-Sirafi
Majid Al-Sirafi el 22 de Sept. de 2013
H everyone
when I execute my program the output is shown as follows:
9.0295e-005
I want to be as follows:
0.0000903
Thanks
  1 comentario
Majid Al-Sirafi
Majid Al-Sirafi el 22 de Sept. de 2013
x = 9.0295e-005
sprintf('%9.7f',x) figure
title(['Root Mean Square Error=',num2str(RMSE_coordinates)])

Iniciar sesión para comentar.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 22 de Sept. de 2013
sprintf('%.7f',9.0295e-005)

Más respuestas (1)

the cyclist
the cyclist el 22 de Sept. de 2013
x = 9.0295e-005
sprintf('%9.7f',x)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by