Trait rstats::MutVecf64[][src]

pub trait MutVecf64 {
    fn mutsmultf64(self, _s: f64);
fn mutvsubf64(self, _v: &[f64]);
fn mutvaddf64(self, _v: &[f64]); }
Expand description

Vector mutating operations that take one argument of f64 end type.

Required methods

mutable multiplication by a scalar

mutable vector subtraction

mutable vector addition

Implementations on Foreign Types

Mutable operations on &mut [f64], where the operand endtype is also f64

Scalar multiplication of a vector, mutates self

Vector subtraction, mutates self

Vector addition, mutates self

Implementors