Trait rust_blas::vector::VectorOperations
source · pub trait VectorOperations<T>: Sized + Vector<T>{
// Provided methods
fn update(&mut self, alpha: &T, x: &dyn Vector<T>) -> &mut Self { ... }
fn scale(&mut self, alpha: &T) -> &mut Self { ... }
fn dot(&self, x: &dyn Vector<T>) -> T { ... }
fn abs_sum(&self) -> T { ... }
fn norm(&self) -> T { ... }
fn max_index(&self) -> usize { ... }
}
Provided Methods§
fn update(&mut self, alpha: &T, x: &dyn Vector<T>) -> &mut Self
fn scale(&mut self, alpha: &T) -> &mut Self
fn dot(&self, x: &dyn Vector<T>) -> T
fn abs_sum(&self) -> T
fn norm(&self) -> T
fn max_index(&self) -> usize
Object Safety§
This trait is not object safe.