Esempio n. 1
0
            /// <summary>
            /// Returns a random number from a Student's t distribution.
            /// </summary>
            public double NextStudentsT(double degreesOfFreedom)
            {
                double U = NextDouble();
                double S = Distributions.StudentsTCumulativeDistributionFunctionInverse(U, degreesOfFreedom);

                return(S);
            }