Struct ndarray_rand::F32[][src]

pub struct F32<S>(pub S);
👎 Deprecated since 0.14.0:

Redundant with rand 0.8

A wrapper type that allows casting f64 distributions to f32

use ndarray::Array;
use ndarray_rand::{RandomExt, F32};
use ndarray_rand::rand_distr::Normal;

let distribution_f64 = Normal::new(0., 1.).expect("Failed to create normal distribution");
let a = Array::random((2, 5), F32(distribution_f64));
println!("{:8.4}", a);
// Example Output:
// [[ -0.6910,   1.1730,   1.0902,  -0.4092,  -1.7340],
//  [ -0.6810,   0.1678,  -0.9487,   0.3150,   1.2981]]

Trait Implementations

impl<S: Clone> Clone for F32<S>[src]

impl<S: Copy> Copy for F32<S>[src]

impl<S: Debug> Debug for F32<S>[src]

impl<S> Distribution<f32> for F32<S> where
    S: Distribution<f64>, 
[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for F32<S> where
    S: RefUnwindSafe

impl<S> Send for F32<S> where
    S: Send

impl<S> Sync for F32<S> where
    S: Sync

impl<S> Unpin for F32<S> where
    S: Unpin

impl<S> UnwindSafe for F32<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,