首页 > 其他 > 详细

数学函数

时间:2019-03-08 22:34:39      阅读:228      评论:0      收藏:0      [点我收藏+]

三角函数方法:

  Math 类中三角函数方法:

  1. Math.toDegrees(Math.PI / 2)返回90.0
  2. Math.toRadians(30)返回0.5236(PI / 6)
  3. Math.sin(0)返回0.0
  4. Math.sin(Math.toRadians(270)返回-1.0
  5. Math.sin(Math.PI / 6)返回0.5
  6. Math.sin(Math.PI/2)返回1.0
  7. Math.cos(0)返回1.0
  8. Math.cos(Math.PI / 6)返回0.866
  9. Math.cos(Math.PI / 2)返回0
  10. Math.asin(0.5)返回0.523598333(PI/ 6)
  11. Math.acos(0.5)返回1.0472(PI/3)
  12. Math.atan(1.0)返回0.785398(PI/)

  指数函数:

  1. exp(x);
  2. log(x);
  3. log10(x);
  4. pow(a,b);
  5. sqrt(x);

  取整函数(返回都是双精度):

  1. 向上取整  ceil(x)     Math.ceil(2.1)返回3.0    Math.ceil(-2.1)返回-2.0
  2. 向下取整       floor(x)   Math.floor(2.1)返回2.0   Math.ceil(-2.1)返回-3.0
  3. 取整为它最接近的整数。如果x与两个整数相等,偶数的整数作为返回值  

    Math.rint(2.1)返回2.0  Math.rint(-2.1)返回-2.0  Math.rint(2.5)返回2.0  Math.rint(2.6)返回3.0  Math.rint(1.5)返回2.0

  4.  round(x)  如果x是单精度数,返回(int)Math.floor(x+0.5);如果x是双精度数,返回(long)Math.floor(x+0.5)

数学函数

原文:https://www.cnblogs.com/King-boy/p/10498558.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!