IOperations<T>.Log Method

Definition

Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.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#
T Log(
	T x
)

Parameters

x  T
A number.

Return Value

T
The natural logarithm of x.

Log(T, T)

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

Parameters

x  T
A number.
newBase  T
The base of the logarithm.

Return Value

T
The natural logarithm of x.

See Also