OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:getchisquare
(Results
1 - 2
of
2
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
AbstractLeastSquaresOptimizer.java
249
return FastMath.sqrt(
getChiSquare
() / rows);
258
public double
getChiSquare
() {
317
final double c = FastMath.sqrt(
getChiSquare
() / (rows - cols));
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
AbstractEstimator.java
197
public double
getChiSquare
(EstimationProblem problem) {
266
final double c = FastMath.sqrt(
getChiSquare
(problem) / (m - p));
Completed in 79 milliseconds