Trait ndarray_linalg::vector::Squared
[−]
[src]
pub trait Squared {
type Output;
fn squared(&self) -> Self::Output;
fn sq_abs(&self) -> Self::Output;
}
Associated Types
type Output
Required Methods
Implementors
impl<A: Float> Squared for A