Package stallone.stat

Examples of stallone.stat.GaussianUnivariate


        boolean eventBased = true;

        // save memory?
        boolean saveMemory = false;
        // output model and parametrizer
        GaussianUnivariate gauss = new GaussianUnivariate(0,1);
        EM em = new EM(_obs, eventBased, initialParameters.getNStates(), initialParameters.isReversible(), gauss, gauss, saveMemory);
        em.setInitialParameters(initialParameters);

        return em;
    }
View Full Code Here


        boolean eventBased = true;

        // save memory?
        boolean saveMemory = false;
        // output model and parametrizer
        GaussianUnivariate gauss = new GaussianUnivariate(0,1);

        // count states:
        int nstates = IntSequence.util.max(initialPaths)+1;

        EM em = new EM(_obs, eventBased, nstates, reversible, gauss, gauss, saveMemory);
View Full Code Here

TOP

Related Classes of stallone.stat.GaussianUnivariate

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.