TOpenCLValue ArcSin(TOpenCLValue X)
The inverse sine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculate the inverse sine of X. Values must be between -1 and 1. The return values will be in the range [0,Dew.Math.Units.Math387.PI], in radians.
Examples
clValue a;
clValue b;
b.Copy(4);
a.ArcSin(b);
See Also: clValue.Sin