forked from Jossc/JavaCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.java
More file actions
32 lines (25 loc) · 677 Bytes
/
Test.java
File metadata and controls
32 lines (25 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.math;
import org.apache.commons.math3.exception.util.LocalizedFormats;
import org.apache.commons.math3.stat.regression.ModelSpecificationException;
import org.apache.commons.math3.stat.regression.SimpleRegression;
/**
* PACKAGE_NAME: com.math
* MONTH_NAME_SHORT: 一月
* USER: Clement
**/
public class Test extends SimpleRegression {
public double sumYY;
public Test(){
super();
}
public Test(double sumYY) {
this.sumYY = sumYY;
}
public Test(boolean includeIntercept, double sumYY) {
super(includeIntercept);
this.sumYY = sumYY;
}
public double getSumYY() {
return sumYY;
}
}