How can I format a percent using 2 digits after the decimal
22 次查看(过去 30 天)
显示 更早的评论
I have what should be a percentage but it comes up with several decimal places, how can I limit to 2 after the decimal
0 个评论
回答(2 个)
Geoff
2012-3-13
If you want to do it without using strings:
round(x * 100) / 100;
One reason you might want to do that is if you have a whole matrix of percentages and want to quickly show them in a sensible way, without messing with the output format for other numbers.
-g-
0 个评论
Oleg Komarov
2012-3-13
Example:
x = 0.78765645; % almost 78.8%
sprintf('%0.2f',x)
ans =
0.79
Is this the effect you're trying to accomplish?
2 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!