Struct rand::distributions::FisherF
source · pub struct FisherF { /* private fields */ }
👎Deprecated since 0.7.0: moved to rand_distr crate
Expand description
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)
.
Implementations§
Trait Implementations§
source§impl Distribution<f64> for FisherF
impl Distribution<f64> for FisherF
impl Copy for FisherF
Auto Trait Implementations§
impl RefUnwindSafe for FisherF
impl Send for FisherF
impl Sync for FisherF
impl Unpin for FisherF
impl UnwindSafe for FisherF
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more