Package stallone.mc.tpt

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

Related Classes of stallone.mc.tpt.TPTFlux

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.