Returns the base 10 logarithm of a complex number.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Complex<T> Log10(
Complex<T> z
)
Public Shared Function Log10 (
z As Complex(Of T)
) As Complex(Of T)
public:
static Complex<T> Log10(
Complex<T> z
)
static member Log10 :
z : Complex<'T> -> Complex<'T>
Parameters
- z
- Type: Extreme.MathematicsComplexT
A complex number.
Return Value
Type:
ComplexTThe base 10 logarithm of
z.
This method requires that the operand type supports real arithmetic.
Reference