com.actelion.research.calc.regression.ICalculateYHat 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;
/**
* ICalculateYHat
* Modest v. Korff
*
* Created by korffmo1 on 27.11.18.
*/
public interface ICalculateYHat {
Matrix calculateYHat(Matrix X);
double calculateYHat(double [] arrRow);
}