log
Computes the logarithm of a complex number with a specified base. The logarithm with base b is calculated using the formula: log_b(z) = ln(z) / ln(b) where z is the complex number and b is the base.
Return
A new instance of Complex representing the logarithm of the given complex number with the specified base.
Parameters
The complex number for which the logarithm is calculated.
The base of the logarithm (must be positive and not equal to 1).
Computes the logarithm of a complex number with a specified complex base. The logarithm with base b is calculated using the formula: log_b(z) = ln(z) / ln(b) where z is the complex number and b is the complex base.
Return
A new instance of Complex representing the logarithm of the given complex number with the specified complex base.
Parameters
The complex number for which the logarithm is calculated.
The complex base of the logarithm.