Math<T>.Log Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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