Displaying a value using fprintf with certain number of decimals.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Shinichiro Shimata
el 5 de Mzo. de 2021
Respondida: Walter Roberson
el 5 de Mzo. de 2021
I am trying to display the value of a using fprintf with only two decimals. Given a = 3.870081e+01;
Can you modify my code below to only display two decimals?
fprintf('The answer for a is %d m/s\n', a)
Thanks,
0 comentarios
Respuesta aceptada
Walter Roberson
el 5 de Mzo. de 2021
format long g
a = rand*10
fprintf('The answer for a is %.2f m/s\n', a)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures 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!