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
)
Public Shared Function Log (
value As BigFloat,
logBase As BigFloat
) As BigFloat
public:
static BigFloat^ Log(
BigFloat^ value,
BigFloat^ logBase
)
static member Log :
value : BigFloat *
logBase : BigFloat -> BigFloat
Parameters
- value
- Type: Extreme.MathematicsBigFloat
A BigFloat value. - logBase
- Type: Extreme.MathematicsBigFloat
A BigFloat value that specifies the base of the logarithm.
Return Value
Type:
BigFloatThe logarithm of
value in base
logBase with a relative accuracy
that is the smaller of the relative precisions of
value and
logBase.
The accuracy of the result is the smaller of the relative accuracies
of value and logBase.
Reference