Operations<T>.Log Method

Definition

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

Overload List

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

Log(T)

Returns the natural logarithm of a number.
C#
public static T Log(
	T operand
)

Parameters

operand  T
 

Return Value

T
The natural logarithm of x.

Log(T, T)

Returns the natural logarithm of a number.
C#
public static T Log(
	T operand,
	T newBase
)

Parameters

operand  T
 
newBase  T
The base of the logarithm.

Return Value

T
The natural logarithm of x.

See Also