pub struct StdNormDistPair;Expand description
Univariate standard normal distribtion with pairwise output.
Trait Implementations§
source§impl Clone for StdNormDistPair
impl Clone for StdNormDistPair
source§fn clone(&self) -> StdNormDistPair
fn clone(&self) -> StdNormDistPair
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StdNormDistPair
impl Debug for StdNormDistPair
source§impl Default for StdNormDistPair
impl Default for StdNormDistPair
source§fn default() -> StdNormDistPair
fn default() -> StdNormDistPair
Returns the “default value” for a type. Read more
source§impl<T: Num> Distribution<[T; 2]> for StdNormDistPair
impl<T: Num> Distribution<[T; 2]> for StdNormDistPair
source§fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> [T; 2]
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> [T; 2]
Generate a random value of
T, using rng as the source of randomness.source§impl<T: Num> Distribution<(T, T)> for StdNormDistPair
impl<T: Num> Distribution<(T, T)> for StdNormDistPair
source§fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> (T, T)
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> (T, T)
Generate a random value of
T, using rng as the source of randomness.impl Copy for StdNormDistPair
Auto Trait Implementations§
impl RefUnwindSafe for StdNormDistPair
impl Send for StdNormDistPair
impl Sync for StdNormDistPair
impl Unpin for StdNormDistPair
impl UnwindSafe for StdNormDistPair
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