com.actelion.research.calc.regression.ICalculateModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.calc.regression;
import com.actelion.research.calc.Matrix;
import com.actelion.research.util.datamodel.ModelXYIndex;
/**
* ICalculateModel
* Modest v. Korff
*
* Created by korffmo1 on 28.11.18.
*/
public interface ICalculateModel extends ICalculateYHat {
Matrix createModel(ModelXYIndex modelXYIndexTrain);
ParameterRegressionMethod getParameter();
}