/// <summary> /// Hyperbolic cosine (cosh) function /// </summary> /// <param name="n1">The number to find the hyperbolic cosine of</param> public static BigFloat Cosh(BigFloat n1) { BigFloat res = new BigFloat(n1); res.Cosh(); return res; }