All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enterprisemath.math.statistics.Estimator Maven / Gradle / Ivy

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy