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