Exemple #1
0
 /// <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);
     n1.Cosh();
     return n1;
 }