NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Math.Log (Double, Double)

Returns the logarithm to the specified base of a number.

[Visual Basic]
Overloads Public Shared Function Log( _
   ByVal a As Double, _
   ByVal newBase As Double _
) As Double
[C#]
public static double Log(
   double a,
   double newBase
);
[C++]
public: static double Log(
   double a,
   double newBase
);
[JScript]
public static function Log(
   a : double,
   newBase : double
) : double;

Parameters

a
The number for which to find the base newBase logarithm.
newBase
The base to use in finding the logarithm.

Return Value

Returns the base newBase logarithm of a: log

See Also

Math Class | Math Members | System Namespace | Math.Log Overload List