Math<T>.Log Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Log(T) Returns the natural logarithm of the specified number.
Log(T, T) Returns the natural logarithm of the specified number.

Log(T)

Returns the natural logarithm of the specified number.
C#
public static T Log(
	T value
)

Parameters

value  T
 

Return Value

T

Log(T, T)

Returns the natural logarithm of the specified number.
C#
public static T Log(
	T value,
	T logBase
)

Parameters

value  T
 
logBase  T
 

Return Value

T

See Also