Examples of DiscreteDistributions


Examples of stallone.stat.DiscreteDistributions

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

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

Examples of stallone.stat.DiscreteDistributions

    }

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

Examples of stallone.stat.DiscreteDistributions

    }

    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
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.