WorksheetFunction.Asin(Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the arcsine, or inverse sine, of a number. The arcsine is the angle whose sine is Arg1
. The returned angle is given in radians in the range -pi/2 to pi/2.
public:
double Asin(double Arg1);
public double Asin (double Arg1);
Public Function Asin (Arg1 As Double) As Double
Parameters
- Arg1
- Double
The sine of the angle you want and must be from -1 to 1.
Returns
Remarks
To express the arcsine in degrees, multiply the result by 180/PI( ) or use the Degrees(Double) method.