asin
- Updated2023-02-21
- 1 minute(s) read
asin
double asin (double inputValue);
Purpose
Computes the principal value of the arc sine of the specified argument. A domain error occurs when the argument is not in the range [-1,1].
Parameters
Input | ||
Name | Type | Description |
inputValue | double | Contains the argument to the function. If the value is not in the range [-1,1] a domain error occurs. |
Return Value
Name | Type | Description |
result | double | Contains the resulting arc sine value. The value is in the range [-PI/2,PI/2] radians. If inputValue is not in the range [-1,1], asin returns NaN and sets errno to EDOM. |
Additional Information
Library: ANSI C Library
Include file: ansi_c.h
LabWindows/CVI compatibility: LabWindows/CVI 3.0 and later