How to round a result to two decimal places
古いコメントを表示
r=10 (4/3)*pi*r^3 Round the result to two decimal places
1 件のコメント
Sarath J
2017 年 11 月 22 日
method 1: round(r)
method 2: format bank; r
採用された回答
その他の回答 (3 件)
Kirby Fears
2016 年 10 月 24 日
Mo'men,
Check out the round function.
r_rounded = round(r,2); % rounds to 2 decimal places
Hope this helps.
5 件のコメント
dpb
2016 年 10 月 24 日
I was thinking there was something but didn't lookfor it to remind myself...much better as it's a builtin and general...
Miquel
2020 年 1 月 12 日
The solution is good, but it keeps the zeros after the rounding. So, if the number was 2.3789 it is now 2.3800. I need to copy matrices and paste them in tables of a Word document, so I need the rounded numbers without the zeros. Is there a way to be able to get rid of the zeros to do the copy paste?
dpb
2020 年 1 月 12 日
As another said, if it's precisely two decimal places you're wanting to keep, then format bank will fix the display in command window.
If your output is to something else, then use a specific format string and write to file or use the COM stuff and stuff directly into Word.
Miquel
2020 年 1 月 13 日
Thanks for the mega-fast answer!
In principle I wanted to copy the matrices from the Variables window in MATLAB. I tried to copy them from the command window with the short g format, as you suggest, but then it is like copying a bunch of text and I don't manage that it gets pasted correctly in the table.
What do you mean with the COM stuff in Word?
Thanks
Eleanor Betton
2020 年 11 月 11 日
You can write to word with the report generator function. I used this for rounding a table to go into this:
M = round(V*100)/100;
C = num2cell(V);
fun = @(x) sprintf('%0.2f', x);
V = cellfun(fun, C, 'UniformOutput',0);
V=array2table(V);
luke
2022 年 9 月 29 日
0 投票
myAns = 2 * (-4-[6+3+(7-(1+8))+12]-3)+5
myAns =
-47
Round the result to two decimal places
カテゴリ
ヘルプ センター および File Exchange で Scope Variables and Generate Names についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!