statest 0.2.2

Rust crate for statistical test.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Cast f32 -> f64.

/// Trait for cast f32 -> f64.
pub trait ToVecf64 {
    /// Cast f32 -> f64.
    fn to_vec_f64(&self) -> Vec<f64>;
}

impl ToVecf64 for [f32] {
    fn to_vec_f64(&self) -> Vec<f64> {
        self.iter().map(|&e| e as f64).collect()
    }
}