How to add your knowledge

asin()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1
    4. 4. Example 2

    Synopsis

    Returns the inverse sine of the input number n, in degrees.

    Syntax

    asin ( n As Number ) As Number
    Argument Type Description
    n Number  

    Example 1

    60 degrees

    Intent >asin(sqrt(3)/2)
    --> 60.0

    Example 2

    30 degrees

    Intent >asin(0.5)
    --> 30.0