OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:xMc
(Results
1 - 3
of
3
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
GaussianDerivativeFunction.java
100
final double
xMc
= x - c;
101
return (-b / d2) *
xMc
* Math.exp(-(
xMc
*
xMc
) / (2.0 * d2));
GaussianFunction.java
120
final double
xMc
= x - c;
121
return a + b * Math.exp(-
xMc
*
xMc
/ (2.0 * (d * d)));
ParametricGaussianFunction.java
89
final double
xMc
= x - c;
90
return a + b * Math.exp(-
xMc
*
xMc
/ (2.0 * (d * d)));
131
final double
xMc
= x - c;
133
final double exp = Math.exp(-
xMc
*
xMc
/ (2 * d2));
134
final double f = b * exp *
xMc
/ d2;
136
return new double[] { 1.0, exp, f, f *
xMc
/ d };
Completed in 311 milliseconds