How to change integer format
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Belal Arar
il 29 Dic 2016
Commentato: Mohammad Abouali
il 29 Dic 2016
how to make the double value format... like 02 instead of 2 ?
0 Commenti
Risposta accettata
Mohammad Abouali
il 29 Dic 2016
Modificato: Mohammad Abouali
il 29 Dic 2016
fprintf('%0.2d\n',2)
02
fprintf('%0.2d\n',3)
03
fprintf('%0.4d\n',3)
0003
2 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!