Rexx - atan Command



This command is used to get the arc-tangent conversion of a number.

Syntax

atan(value) 

Parameters

  • value − The value as an input to the arc-tangent function.

Return Value

This method returns the arc-tangent value of the input-ed number.

Example

/* Main program */ 
say atan(0.1)

When we run the above program we will get the following result.

Output

0.099668652 
rexx_brexx.htm
Advertisements