BigFloat.Log(BigFloat, BigFloat, AccuracyGoal) 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,
	AccuracyGoal accuracyGoal
)

Parameters

value  BigFloat
A BigFloat value.
logBase  BigFloat
A BigFloat value that specifies the base of the logarithm.
accuracyGoal  AccuracyGoal
An AccuracyGoal value that specifies the desired accuracy of the result.

Return Value

BigFloat
The logarithm of value in base logBase with an accuracy within accuracyGoal.

Exceptions

ArgumentNullException

value is null.

-or-

logBase is null.

See Also