三角函数方法:
Math 类中三角函数方法:
- Math.toDegrees(Math.PI / 2)返回90.0
- Math.toRadians(30)返回0.5236(PI / 6)
- Math.sin(0)返回0.0
- Math.sin(Math.toRadians(270)返回-1.0
- Math.sin(Math.PI / 6)返回0.5
- Math.sin(Math.PI/2)返回1.0
- Math.cos(0)返回1.0
- Math.cos(Math.PI / 6)返回0.866
- Math.cos(Math.PI / 2)返回0
- Math.asin(0.5)返回0.523598333(PI/ 6)
- Math.acos(0.5)返回1.0472(PI/3)
- Math.atan(1.0)返回0.785398(PI/)
指数函数:
- exp(x);
- log(x);
- log10(x);
- pow(a,b);
- sqrt(x);
取整函数(返回都是双精度):
- 向上取整 ceil(x) Math.ceil(2.1)返回3.0 Math.ceil(-2.1)返回-2.0
- 向下取整 floor(x) Math.floor(2.1)返回2.0 Math.ceil(-2.1)返回-3.0
- 取整为它最接近的整数。如果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