/// <summary> /// arcsin(): the inverse function of sin(), range of (-pi/2..pi/2) /// </summary> /// <param name="n1">The number to find the arcsine of (-pi/2..pi/2)</param> /// <remarks>Note that inverse trig functions are only defined within a specific range. /// Values outside this range will return NaN, although some margin for error is assumed. /// </remarks> public static BigFloat Arcsin(BigFloat n1) { BigFloat res = new BigFloat(n1); res.Arcsin(); return res; }