public final class MathUtils extends Object
| Modifier and Type | Method and Description |
|---|---|
static double |
arithmeticMean(double v1,
double v2,
double w1,
double w2)
Returns the arithmetic mean of
v1 and v2, weighting them
by w1 and w2, respectively. |
static double |
harmonicMean(double v1,
double v2)
Returns the harmonic mean of
v1 and v2, giving both
arguments equal weight. |
static double |
harmonicMean(double v1,
double v2,
double w1,
double w2)
Returns the harmonic mean of
v1 and v2, weighting them by
w1 and w2, respectively. |
public static double harmonicMean(double v1,
double v2)
v1 and v2, giving both
arguments equal weight.public static double harmonicMean(double v1,
double v2,
double w1,
double w2)
v1 and v2, weighting them by
w1 and w2, respectively.public static double arithmeticMean(double v1,
double v2,
double w1,
double w2)
v1 and v2, weighting them
by w1 and w2, respectively.