How to change integer format
5 次查看(过去 30 天)
显示 更早的评论
how to make the double value format... like 02 instead of 2 ?
0 个评论
采纳的回答
Mohammad Abouali
2016-12-29
编辑:Mohammad Abouali
2016-12-29
fprintf('%0.2d\n',2)
02
fprintf('%0.2d\n',3)
03
fprintf('%0.4d\n',3)
0003
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!