Tan (Function)
Gets the tangent of the specified expression.
Parameters
<Expression>
|
The expression that gets the tangent (integer type or double-precision type)
|
Return Value
Returns the value of the double-precision type number.
The content of the value is the value of the tangent that is fetched.
Description
Specify the angle in the <Expression> as a radian. In the case of angle notation (X degrees), it is necessary to convert to a radian by multiplying pi/180.
Specify either an integer type or double-precision type real number in the <Expression>.
Example
Get the tangent of 45 degrees.
DATA#=Tan(45/180*3.141592)
The result is as follows:
DATA#=1