ml.regression.NonLinearRegressor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jstat Show documentation
Show all versions of jstat Show documentation
Java Library for Statistical Analysis.
The newest version!
package ml.regression;
import datasets.DenseMatrixSet;
import maths.functions.NonLinearVectorPolynomial;
import maths.functions.ScalarMonomial;
public class NonLinearRegressor> extends RegressorBase {
/**
* Constructor
*/
public NonLinearRegressor(ScalarMonomial...terms){
super(new NonLinearVectorPolynomial(terms));
}
/**
* Constructor
*/
public NonLinearRegressor(NonLinearVectorPolynomial hypothesis){
super(hypothesis);
}
}