示例#1
0
 /// <summary>
 /// Calculates the natural logarithm of the BigInteger.
 /// </summary>
 public double Log()
 {
     return(BigInt.Log(Value));
 }
示例#2
0
 public static double Log(this BigInt self, double baseValue)
 {
     return(BigInt.Log(self, baseValue));
 }
示例#3
0
 public double Log(Double newBase)
 {
     return(BigInt.Log(Value, newBase));
 }
示例#4
0
 public static double Log(this BigInt self)
 {
     return(BigInt.Log(self));
 }