using fprintf to print same length values
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can I use fprintf to print values with the same length (the number of digits after the pointer is changing based on the number of digits before the pointer)?
0.00000000
30.0000248
360.000305
0 comentarios
Respuestas (2)
Azzi Abdelmalek
el 30 de Dic. de 2013
Editada: Azzi Abdelmalek
el 30 de Dic. de 2013
b=360.000305
m=9 % fixed length
out=sprintf('%9.9f',b)
ii=numel(strfind(out,'.'))
out=out(1:m+ii)
8 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!