Method atan(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.atan(val.doubleValue()));
2
angle=Math.atan(deltaor.getY()/deltaor.getX());
3
key = new Integer ((int)((Math.atan(Math.random()) / Math.PI)
4
double theta = Math.atan(mTangent);
5
glyphAngle = Math.atan(sinTheta/cosTheta);
6
case 76 /* atan */: return U.toNum(Math.atan(U.toReal(x)));
7
int startAngle = (int)Math.atan( (y3-my)/(x3-mx));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.