Examples of ICommittor


Examples of stallone.api.mc.tpt.ICommittor

        return(createCommittor(T, MarkovModel.util.stationaryDistribution(T), A, B));
    }

    public ICommittor createCommittor(IDoubleArray T, IDoubleArray pi, IIntArray A, IIntArray B)
    {
        ICommittor comm = new Committor(T,A,B);
        comm.setStationaryDistribution(pi);
        return(comm);
    }
View Full Code Here

Examples of stallone.api.mc.tpt.ICommittor

        return res;
    }

    public IDoubleArray forwardCommittor(IDoubleArray M, IIntArray A, IIntArray B)
    {
        ICommittor comm = MarkovModel.create.createCommittor(M, A, B);
        return(comm.forwardCommittor());
    }
View Full Code Here

Examples of stallone.api.mc.tpt.ICommittor

        return(comm.forwardCommittor());
    }

    public IDoubleArray backwardCommittor(IDoubleArray M, IIntArray A, IIntArray B)
    {
        ICommittor comm = MarkovModel.create.createCommittor(M, A, B);
        return(comm.backwardCommittor());
    }
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.