Complex<T>.Log10 Method

Returns the base 10 logarithm of a complex number.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Complex<T> Log10(
	Complex<T> z
)

Parameters

z  Complex<T>
A complex number.

Return Value

Complex<T>
The base 10 logarithm of z.

Remarks

This method requires that the operand type supports real arithmetic.

See Also