Package com.enterprisemath.math.algebra

Examples of com.enterprisemath.math.algebra.Interval


     *
     * @param observations observation for which the mixture will be estimated
     * @return estimated mixture
     */
    public NormalDistributionMixture estimate(ObservationProvider<Double> observations) {
        Interval minMax = extractInterval(observations);
        ValidationUtils.guardGreaterOrEqualDouble(minMax.getMin(), -1000000,
                "observation interval is out of range for calcualtion");
        ValidationUtils.guardGreaterOrEqualDouble(1000000, minMax.getMax(),
                "observation interval is out of range for calcualtion");

        NormalDistributionMixture res = initializeOneCompoenent(observations);
        invokeStepListener(res);
        double resL = Double.NEGATIVE_INFINITY;
View Full Code Here

TOP

Related Classes of com.enterprisemath.math.algebra.Interval

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.