WANTS TO MAKE SOFTWARE WITHOUT KNOWLEDGE OF ASP? CLICK HERE
The Atn function returns the arc tangent of a specified number.
The required number argument is a Double or any valid numeric expression.
The Atn function returns the arc tangent of a specified number.
The Atn function takes the ratio of two sides of a right triangle
(number) and returns the corresponding angle in radians. The ratio
is the length of the side opposite the angle divided by the length
of the side adjacent to the angle. Its parameter is number which
describes a numeric expression.
The Syntax of Atn Function is :-
Example#1 :-
Code :-
document.write(Atn(89))
Output :-
1.55956084453693 |
Example#2 :-
<
Code :-
document.write(Atn(8.9))
Output :-
1.45890606062322 |
Note:- Atn is the inverse trigonometric function of Tan,
which takes an angle as its argument and returns the ratio of two
sides of a right triangle. Do not confuse Atn with the cotangent,
which is the simple inverse of a tangent (1/tangent)
|