Rexx - asin Command



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

Syntax

asin(value)

Parameters

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

Return Value

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

Example

/* Main program */ 
say asin(0.1)

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

Output

0.10016742 
rexx_brexx.htm
Advertisements