示例#1
0
 public static Complex NaturalLogarithm(this Complex complex)
 {
     return(Complex.Log(complex));
 }
示例#2
0
 public static Complex Logarithm(this Complex complex, double baseValue)
 {
     return(Complex.Log(complex, baseValue));
 }
 /// <summary>
 ///     Natural Logarithm of this <c>Complex</c> (Base E).
 /// </summary>
 /// <param name="complex">The <seecreComplex" /> number to perform this operation on.</param>
 /// <returns>
 ///     The natural logarithm of this complex number.
 /// </returns>
 public static Complex Ln(this Complex complex)
 {
     return(Complex.Log(complex));
 }