How can I format some numbers and pad them with zeros?
17 次查看(过去 30 天)
显示 更早的评论
I have a data set where I have columns of data in the following format.
98.23
98.36
78.255
100.56
I basically want to have it cut off 2 digits after the decimal and pad with zeros in the front.
Example:
098.23
098.36
078.25
100.56
I've tried '%3.3f\n but I can't get the zero padding to work. Please help and thank you! :)
0 个评论
采纳的回答
Azzi Abdelmalek
2016-6-10
编辑:Azzi Abdelmalek
2016-6-10
A=[8.23
98.36
78.255
100.56]
B=sprintf('%06.2f\n',A)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!