StdDev in micromath::statistics - Rust (original) (raw)
Trait StdDev
pub trait StdDev {
type Result;
// Required method
fn stddev(self) -> Self::Result;
}
Available on crate feature statistics
only.
Expand description
Compute standard deviation
Required Associated Types§
type Result
Result type
Required Methods§
fn stddev(self) -> Self::Result
Compute standard deviation
Implementations on Foreign Types§
impl StdDev for &[T]
type Result = f32
Result type