fprintf function question about

fprintf('that will be $ %5.2f ....)
I know .2 mean 2 decimal place, but what is 5 mean here. Thanks.

回答 (1 件)

Image Analyst
Image Analyst 2013 年 2 月 19 日

0 投票

It means that the field width will be padded so that it will be at least 5 characters, like "12.34" or " 1.23" - Note the last case has a space added. You don't need to use the first number - I never do. Just use '%.2f' and you'll be fine. You only need to use it if you want to print a bunch of things with different sizes and want them to be all aligned. But normally you don't use it.

この質問は閉じられています。

タグ

質問済み:

2013 年 2 月 19 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by