How to change integer format
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Belal Arar
el 29 de Dic. de 2016
Comentada: Mohammad Abouali
el 29 de Dic. de 2016
how to make the double value format... like 02 instead of 2 ?
0 comentarios
Respuesta aceptada
Mohammad Abouali
el 29 de Dic. de 2016
Editada: Mohammad Abouali
el 29 de Dic. de 2016
fprintf('%0.2d\n',2)
02
fprintf('%0.2d\n',3)
03
fprintf('%0.4d\n',3)
0003
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!