/// <summary> /// Arctanh(): the inverse tanh function /// </summary> /// <param name="n1">The number to fine the inverse hyperbolic tan of</param> public static BigFloat Arctanh(BigFloat n1) { BigFloat res = new BigFloat(n1); res.Arctanh(); return res; }