Examples of coarseGrain()


Examples of stallone.mc.pcca.MetastableSubspace.coarseGrain()

     * and Pout is a nstates x n output probability matrix.
     */
    public IDoubleArray[] coarseGrain(IDoubleArray T, int nstates)
    {
        MetastableSubspace ms = new MetastableSubspace(T);
        ms.coarseGrain(nstates);
        IDoubleArray[] res = {ms.getCoarseGrainedTransitionMatrix(), ms.getObservationProbabilities()};
        return res;
    }

    public IDoubleArray forwardCommittor(IDoubleArray M, IIntArray A, IIntArray B)
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.