mirror of
https://github.com/apache/commons-math.git
synced 2025-02-07 18:49:40 +00:00
Added argumentless constructor.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141389 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2bf0772fff
commit
b3588619ae
@ -49,7 +49,7 @@ import org.apache.commons.math.distribution.TDistribution;
|
||||
* the necessary computations to return the requested statistic.</li>
|
||||
* </ul>
|
||||
*
|
||||
* @version $Revision: 1.4 $ $Date: 2004/06/23 16:26:17 $
|
||||
* @version $Revision: 1.5 $ $Date: 2004/07/17 21:14:02 $
|
||||
*/
|
||||
public class BivariateRegression implements Serializable {
|
||||
|
||||
@ -82,6 +82,13 @@ public class BivariateRegression implements Serializable {
|
||||
|
||||
// ---------------------Public methods--------------------------------------
|
||||
|
||||
/**
|
||||
* Create an empty BivariateRegression instance
|
||||
*/
|
||||
public BivariateRegression() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds the observation (x,y) to the regression data set.
|
||||
* <p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user