public class MathUtils
extends java.lang.Object
Constructor and Description |
---|
MathUtils() |
Modifier and Type | Method and Description |
---|---|
static double[] |
logspace(double min,
double max,
int number)
Return a vector of with spaced according to the same multiplicative factor.
|
public static double[] logspace(double min, double max, int number)
Example: logspace(1, 100, 3) => [1, 10, 100]
min
- Minimum valuemax
- Maximum valuenumber
-