Struct rand_distr::FisherF [−][src]
pub struct FisherF<N> { /* fields omitted */ }
The Fisher F distribution F(m, n)
.
This distribution is equivalent to the ratio of two normalised
chi-squared distributions, that is, F(m,n) = (χ²(m)/m) / (χ²(n)/n)
.
Example
use rand_distr::{FisherF, Distribution}; let f = FisherF::new(2.0, 32.0).unwrap(); let v = f.sample(&mut rand::thread_rng()); println!("{} is from an F(2, 32) distribution", v)
Implementations
impl<N: Float> FisherF<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]
impl<N: Float> FisherF<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]pub fn new(m: N, n: N) -> Result<FisherF<N>, FisherFError>
[src]
Create a new FisherF
distribution, with the given parameter.
Trait Implementations
impl<N: Float> Distribution<N> for FisherF<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]
impl<N: Float> Distribution<N> for FisherF<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]impl<N: Copy> Copy for FisherF<N>
[src]
Auto Trait Implementations
impl<N> RefUnwindSafe for FisherF<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for FisherF<N> where
N: Send,
N: Send,
impl<N> Sync for FisherF<N> where
N: Sync,
N: Sync,
impl<N> Unpin for FisherF<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for FisherF<N> where
N: UnwindSafe,
N: UnwindSafe,