Three-digit format
19 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
J T
el 21 de Ag. de 2020
Respondida: Sara Boznik
el 21 de Ag. de 2020
Hello,
I am looking for a format such that:
fprintf( format , 1.1111111); gives 1.11
fprintf( format , 11.111111); gives 11.1
fprintf( format , 111.11111); gives 111
That is 3 digits in total regadless of the decimal point, thanks!
0 comentarios
Respuesta aceptada
Más respuestas (1)
Sara Boznik
el 21 de Ag. de 2020
Hi
I suggest you that you use:
fprintf('%.3g',1.111111)
0 comentarios
Ver también
Categorías
Más información sobre Introduction to Installation and Licensing 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!