log

fun log(base: ComplexNumber = ComplexNumber(10, 0), of: ComplexNumber, intBranch: Int = 0): ComplexNumber(source)

Log or Logarithm of a ComplexNumber

log(w, z) is defined as ln(z, n) / ln(w, n) where n∈ℤ n is the integer branch of the natural logarithm

Return

log(ComplexNumber, ComplexNumber, Int)

Since

Version 1.0

Version 1.0

Parameters

base

that is the base of the logarithm and it's a ComplexNumber

of

that is a ComplexNumber

intBranch

that is a Int, default value is 0

See also


fun log(base: Number = 10, of: ComplexNumber, intBranch: Int = 0): ComplexNumber(source)

Log or Logarithm of a ComplexNumber

log(w, z) is defined as ln(z, n) / ln(w, n) where n∈ℤ n is the integer branch of the natural logarithm

Return

log(Number, ComplexNumber, Int)

Since

Version 1.0

Version 1.0

Parameters

base

that is the base of the logarithm and it's a Number

of

that is a ComplexNumber

intBranch

that is a Int, default value is 0

See also