Package stallone.mc.tpt

Examples of stallone.mc.tpt.Committor


        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

TOP

Related Classes of stallone.mc.tpt.Committor

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.