JavaScript is disabled on your browser.
org.gvsig.compat.lang
Interface MathUtils
All Known Implementing Classes:
SEMathUtils
public interface
MathUtils
Math Utilities used for Java SE-ME compatibility.
Method Summary
Methods
Modifier and Type
Method and Description
double
log10
(double a)
Compatible implementation of the Math.log10(double) method.
Method Detail
log10
double log10(double a)
Compatible implementation of the Math.log10(double) method.
Parameters:
a
- a value
Returns:
the base 10 logarithm of
a
.
See Also:
Math.log10(double)