Package stallone.stat

Examples of stallone.stat.DiscreteDistributions


            }
            _T.set(i,i, 1.0-psum);
        }

        super.T = _T;
        super.dd = new DiscreteDistributions(_T);
    }
View Full Code Here


    }

    public MarkovChain(IDoubleArray _T)
    {
        this.T = _T;
        dd = new DiscreteDistributions(_T);
    }
View Full Code Here

    }

    public MarkovChain(IDoubleArray _startingDistribution, IDoubleArray _T)
    {
        this.T = _T;
        dd = new DiscreteDistributions(_T);
        this.p0 = _startingDistribution;
        p0dist = new DiscreteDistribution(p0);
    }
View Full Code Here

TOP

Related Classes of stallone.stat.DiscreteDistributions

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.