Examples of TPTFlux


Examples of stallone.mc.tpt.TPTFlux

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

    public ITPTFlux createTPT(IDoubleArray T, IDoubleArray initialDistribution, IIntArray A, IIntArray B)
    {
        TPTFlux tpt = new TPTFlux(T,A,B);

        tpt.setStationaryDistribution(initialDistribution);
        tpt.calculate();

        return(tpt);
    }
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.