/// <summary> /// Arcsinh(): the inverse sinh function /// </summary> /// <param name="n1">The number to find the inverse hyperbolic sine of</param> public static BigFloat Arcsinh(BigFloat n1) { BigFloat res = new BigFloat(n1); res.Arcsinh(); return res; }