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

gov.sandia.cognition.statistics.EstimableWeightedDistribution Maven / Gradle / Ivy

/*
 * File:                EstimableWeightedDistribution.java
 * Authors:             Kevin R. Dixon
 * Company:             Sandia National Laboratories
 * Project:             Cognitive Foundry
 * 
 * Copyright Jan 30, 2012, Sandia Corporation.
 * Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
 * license for use of this work by or on behalf of the U.S. Government.
 * Export of this program may require a license from the United States
 * Government. See CopyrightHistory.txt for complete details.
 * 
 */

package gov.sandia.cognition.statistics;

/**
 * A Distribution that has an estimator associated with it, typically a
 * closed-form estimator, that can estimate the distribution from weighted data.
 * @param 
 * Type of observations generated by the Distribution.
 * @param 
 * Type of distribution returned from the DistributionWeightedEstimator.
 * @author Kevin R. Dixon
 * @since  3.4.2
 */
public interface EstimableWeightedDistribution>
    extends EstimableDistribution
{

    /**
     * Gets an estimator associated with this distribution for weighted data
     * 
     * @return
     *      A distribution estimator associated for this distribution.
     */
    public DistributionWeightedEstimator getWeightedEstimator();
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy