BigFloat.Log(BigFloat, BigFloat) Method

Returns the logarithm of a number relative to the specified base with the specified accuracy.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BigFloat Log(
	BigFloat value,
	BigFloat logBase
)

Parameters

value  BigFloat
A BigFloat value.
logBase  BigFloat
A BigFloat value that specifies the base of the logarithm.

Return Value

BigFloat
The logarithm of value in base logBase with a relative accuracy that is the smaller of the relative precisions of value and logBase.

Remarks

The accuracy of the result is the smaller of the relative accuracies of value and logBase.

Exceptions

ArgumentNullException

value is null.

-or-

logBase is null.

See Also