com.enterprisemath.math.statistics.Estimator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-math Show documentation
Show all versions of em-math Show documentation
Advanced mathematical algorithms.
The newest version!
package com.enterprisemath.math.statistics;
import com.enterprisemath.math.statistics.observation.ObservationProvider;
/**
* Definition of estimator interface.
* Estimator takes observations and returns object as a result of estimation.
*
* @author radek.hecl
* @param type of the observations
* @param type of the estimated object
*/
public interface Estimator {
/**
* Estimates the result object.
*
* @param observations observations
* @return estimated object
*/
public R estimate(ObservationProvider observations);
}