maths.functions.IRegularizerFunction 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 maths.functions;
/**
* General interface for defining regularization functions
*/
public interface IRegularizerFunction extends IFunction {
/**
* Returns the value of the regularizer
*/
Double evaluate(Void input);
}