Method acos(double a)
Return type: double
Member of:
java.lang.Math
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return new BigDecimal(Math.acos(val.doubleValue()));
2
double angle = (dx > 0) ? Math.acos(cos) : -Math.acos(cos);
3
initialRotation = (dx > 0) ? Math.acos(cos) : -Math.acos(cos);
4
double aBaseR = Math.acos( (w/2)/r );
5
double distinradians = Math.acos(Math.sin(startlatrad)*Math.sin(endlatrad) +
6
double angle = Math.toDegrees(Math.acos(ratio));
7
case 75 /* acos */: return U.toNum(Math.acos(U.toReal(x)));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.