Returns the logarithm of a number relative to the specified base with the specified accuracy.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigFloat Log(
BigFloat value,
BigFloat logBase,
AccuracyGoal accuracyGoal
)
Public Shared Function Log (
value As BigFloat,
logBase As BigFloat,
accuracyGoal As AccuracyGoal
) As BigFloat
public:
static BigFloat^ Log(
BigFloat^ value,
BigFloat^ logBase,
AccuracyGoal accuracyGoal
)
static member Log :
value : BigFloat *
logBase : BigFloat *
accuracyGoal : AccuracyGoal -> BigFloat
Parameters
- value
- Type: Extreme.MathematicsBigFloat
A BigFloat value. - logBase
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the base of the logarithm. - accuracyGoal
- Type: Extreme.MathematicsAccuracyGoal
An AccuracyGoal value that specifies the desired
accuracy of the result.
Return Value
Type:
BigFloatThe logarithm of
value in base
logBase with an accuracy
within
accuracyGoal.
Reference