Struct rand::distributions::gamma::StudentT [] [src]

pub struct StudentT { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

The Student t distribution, t(nu), where nu is the degrees of freedom.

Methods

impl StudentT
[src]

🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

Create a new Student t distribution with n degrees of freedom. Panics if n <= 0.

Trait Implementations

impl Sample<f64> for StudentT
[src]

🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

Generate a random value of Support, using rng as the source of randomness. Read more

impl IndependentSample<f64> for StudentT
[src]

🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

Generate a random value.

impl Debug for StudentT
[src]

Formats the value using the given formatter.