suppose i have number a=5.70787644444 how do i consider just first 2 decimal places in that . that is a=5.70. is it possible?

1 次查看(过去 30 天)
please reply as soon as possible.

采纳的回答

Star Strider
Star Strider 2015-2-7
One solution:
a = 5.70787644444;
roundn = @(x,n) fix(x.*10.^n)./10.^n; % Round ‘x’ To ‘n’ Digits To The Right Of The Decimal
ar = roundn(a,2)
produces:
ar =
5.70
  4 个评论

请先登录,再进行评论。

更多回答(1 个)

Guillaume
Guillaume 2015-2-7
Since 2014b, round takes the number of decimals to round to, so it's just:
a = 5.70787644444;
arounded = round(a, 2)
  1 个评论
Image Analyst
Image Analyst 2015-2-7
Yes, but he didn't ask for the rounded value. You probably just thought that since that's the name Star chose - not a good descriptive name in my opinion since it uses fix() instead of round() and fix() does not round in the sense that most people think of rounding.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by