Beispiel #1
0
 /// <summary>
 /// Arccosh(): the inverse cosh() function
 /// </summary>
 /// <param name="n1">The number to find the inverse hyperbolic cosine of</param>
 public static BigFloat Arccosh(BigFloat n1)
 {
     BigFloat res = new BigFloat(n1);
     n1.Arccosh();
     return n1;
 }