[][src]Struct num_complex::ComplexDistribution

pub struct ComplexDistribution<Re, Im = Re> { /* fields omitted */ }

A generic random value distribution for complex numbers.

Methods

impl<Re, Im> ComplexDistribution<Re, Im>[src]

pub fn new(re: Re, im: Im) -> Self[src]

Creates a complex distribution from independent distributions of the real and imaginary parts.

Trait Implementations

impl<Re: Debug, Im: Debug> Debug for ComplexDistribution<Re, Im>[src]

impl<Re: Copy, Im: Copy> Copy for ComplexDistribution<Re, Im>[src]

impl<Re: Clone, Im: Clone> Clone for ComplexDistribution<Re, Im>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<T, Re, Im> Distribution<Complex<T>> for ComplexDistribution<Re, Im> where
    T: Num + Clone,
    Re: Distribution<T>,
    Im: Distribution<T>, 
[src]

fn sample_iter<R>(&'a self, rng: &'a mut R) -> DistIter<'a, Self, R, T> where
    R: Rng
[src]

Create an iterator that generates random values of T, using rng as the source of randomness. Read more

Auto Trait Implementations

impl<Re, Im> Send for ComplexDistribution<Re, Im> where
    Im: Send,
    Re: Send

impl<Re, Im> Sync for ComplexDistribution<Re, Im> where
    Im: Sync,
    Re: Sync

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.