[][src]Struct rv::dist::StudentsT

pub struct StudentsT { /* fields omitted */ }

Student's T distribution over x in (-∞, ∞).

Methods

impl StudentsT[src]

pub fn set_v(&mut self, val: f64) -> &mut Self[src]

Degrees of freedom, ν, in (0, ∞)

impl StudentsT[src]

pub fn new(v: f64) -> Result<Self>[src]

Create a new Student's T distribtuion with degrees of freedom, v.

pub fn new_unchecked(v: f64) -> Self[src]

Creates a new StudentsT without checking whether the parameter is valid.

pub fn v(&self) -> f64[src]

Get the degrees of freedom, v

Trait Implementations

impl Rv<f64> for StudentsT[src]

impl Rv<f32> for StudentsT[src]

impl Support<f64> for StudentsT[src]

impl Support<f32> for StudentsT[src]

impl ContinuousDistr<f64> for StudentsT[src]

impl ContinuousDistr<f32> for StudentsT[src]

impl Mean<f64> for StudentsT[src]

impl Mean<f32> for StudentsT[src]

impl Median<f64> for StudentsT[src]

impl Median<f32> for StudentsT[src]

impl Mode<f64> for StudentsT[src]

impl Mode<f32> for StudentsT[src]

impl Variance<f64> for StudentsT[src]

impl Variance<f32> for StudentsT[src]

impl Skewness for StudentsT[src]

impl Kurtosis for StudentsT[src]

impl<'_> From<&'_ StudentsT> for String[src]

impl Clone for StudentsT[src]

impl Default for StudentsT[src]

impl PartialEq<StudentsT> for StudentsT[src]

impl PartialOrd<StudentsT> for StudentsT[src]

impl Display for StudentsT[src]

impl Debug for StudentsT[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,