Examples of GaussianUnivariate


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

Examples of stallone.stat.GaussianUnivariate

        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
Copyright © 2018 www.massapi.com. 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.