OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ybar
(Results
1 - 1
of
1
) sorted by null
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
SimpleRegression.java
75
/** total variation in y (sum of squared deviations from
ybar
) */
88
private double
ybar
= 0;
field in class:SimpleRegression
140
ybar
= y;
143
double dy = y -
ybar
;
148
ybar
+= dy / (n + 1.0);
176
double dy = y -
ybar
;
181
ybar
-= dy / (n - 1.0);
Completed in 2919 milliseconds