Examples of NinjaEstimator


Examples of stallone.hmm.pmm.NinjaEstimator

            int nconvsteps,
            double dectol,
            IDoubleArray TCinit,
            IDoubleArray chiInit)
    {
        NinjaEstimator ninja = new NinjaEstimator(_dtrajs);
        ninja.setNHiddenStates(nHiddenStates);
        ninja.setNIterHMMMax(nconvsteps);
        ninja.setHMMLikelihoodMaxIncrease(dectol);
       
        ninja.setTau(lag);
        ninja.setTimeshift(timeshift);

        // initialization from last lag
        if (TCinit != null && chiInit != null)
            ninja.setInit(TCinit, chiInit);
       
        return ninja;
    }
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.