Struct rand::distributions::gamma::StudentT
[−]
[src]
pub struct StudentT { chi: ChiSquared, dof: f64, }
Unstable (
rand
): use rand
from crates.io
The Student t distribution, t(nu)
, where nu
is the degrees of
freedom.
Fields
chi | Unstable ( rand ): use |
dof | Unstable ( rand ): use |
Methods
impl StudentT
fn new(n: f64) -> StudentT
Unstable (
rand
): use rand
from crates.io
Create a new Student t distribution with n
degrees of
freedom. Panics if n <= 0
.