asp.net.ph

Math.Log10 Method

System Namespace   Math Class


Returns the base 10 logarithm of a specified number.

[ VB ]
Public Shared Function Log10 ( _
   ByVal d As Double _
) As Double

[ C# ]
public static double Log10 (
   double d
);

[ C++ ]
public: static double Log10 (
   double d
);

[ JScript ]
public static function Log10 (
   d : double
) : double;

Parameters

d
A number whose logarithm is to be found.

Return Value


Sign of d Returns
Positive The base 10 log of d; that is, log10 d.
Zero PositiveInfinity
Negative NaN

If d is equal to NaN, thsi method returns NaN. If d is equal to PositiveInfinity, this method returns PositiveInfinity.

Remarks

Parameter d is specified as a base 10 number.

See Also

Math Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph