Package fork.lib.math.applied.optim

Examples of fork.lib.math.applied.optim.EM


    Distribution d= new Distribution(data.getValues());
    DistributionFunction[] fn= new DistributionFunction[]{
        new NormalDistribution(0,1),
        new NormalDistribution(0,1)
    };
    EM em= new EM(d, fn, null);
    EMResultEntry res= em.getOptimalResultEntry();
    double mm= Double.POSITIVE_INFINITY;
    double ms= Double.POSITIVE_INFINITY;
    if(res!=null){
        ArrayList<DistributionFunction> distrs= res.distrs;
        for( int i=0; i<distrs.size(); i++ ){
View Full Code Here

TOP

Related Classes of fork.lib.math.applied.optim.EM

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.