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)

Returns the natural (base e) logarithm of a number.

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

Parameters

d
The number for which to find the natural logarithm.

Return Value

Returns the natural log of d: ln d or log

See Also

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