Struct rand_distr::Cauchy
source · [−]pub struct Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,{ /* private fields */ }
Expand description
The Cauchy distribution Cauchy(median, scale)
.
This distribution has a density function:
f(x) = 1 / (pi * scale * (1 + ((x - median) / scale)^2))
Note that at least for f32
, results are not fully portable due to minor
differences in the target system’s tan implementation, tanf
.
Example
use rand_distr::{Cauchy, Distribution};
let cau = Cauchy::new(2.0, 5.0).unwrap();
let v = cau.sample(&mut rand::thread_rng());
println!("{} is from a Cauchy(2, 5) distribution", v);
Implementations
Trait Implementations
sourceimpl<F: Clone> Clone for Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
impl<F: Clone> Clone for Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
sourceimpl<F: Debug> Debug for Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
impl<F: Debug> Debug for Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
sourceimpl<F> Distribution<F> for Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
impl<F> Distribution<F> for Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
Generate a random value of
T
, using rng
as the source of randomness.sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>ⓘNotable traits for DistIter<D, R, T>impl<D, R, T> Iterator for DistIter<D, R, T>where
D: Distribution<T>,
R: Rng, type Item = T;
where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>ⓘNotable traits for DistIter<D, R, T>impl<D, R, T> Iterator for DistIter<D, R, T>where
D: Distribution<T>,
R: Rng, type Item = T;
where
R: Rng,
D: Distribution<T>,
R: Rng, type Item = T;
Create an iterator that generates random values of
T
, using rng
as
the source of randomness. Read moreimpl<F: Copy> Copy for Cauchy<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
Auto Trait Implementations
impl<F> RefUnwindSafe for Cauchy<F>where
F: RefUnwindSafe,
impl<F> Send for Cauchy<F>where
F: Send,
impl<F> Sync for Cauchy<F>where
F: Sync,
impl<F> Unpin for Cauchy<F>where
F: Unpin,
impl<F> UnwindSafe for Cauchy<F>where
F: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more