 | MathUtilsLog Method (Single, Single) |
Returns the logarithm of the specified number in the passed base.
Namespace: Slash.Math.UtilsAssembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntaxpublic static float Log(
float x,
float newBase
)
Public Shared Function Log (
x As Single,
newBase As Single
) As Single
public:
static float Log(
float x,
float newBase
)
static member Log :
x : float32 *
newBase : float32 -> float32
Parameters
- x
- Type: SystemSingle
Number to compute the logarithm of. - newBase
- Type: SystemSingle
Base of the logarithm to compute.
Return Value
Type:
SingleLogarithm of the specified number in the passed base.
See Also