Trait basic_dsp_vector::OffsetOps

source ·
pub trait OffsetOps<T>: Sized
where T: Sized,
{ // Required method fn offset(&mut self, offset: T); }
Expand description

An operation which adds a constant to each vector element

Required Methods§

source

fn offset(&mut self, offset: T)

Adds a scalar to each vector element.

§Failures

self.len() to 0 if the vector isn’t in the complex number space but factor is complex.

§Example
use basic_dsp_vector::*;
let mut vector = vec!(1.0, 2.0).to_real_time_vec();
vector.offset(2.0);
assert_eq!([3.0, 4.0], vector[0..]);

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<S, T, N, D> OffsetOps<Complex<T>> for DspVec<S, T, N, D>

source§

impl<S, T, N, D> OffsetOps<T> for DspVec<S, T, N, D>
where S: ToSliceMut<T>, T: RealNumber, N: NumberSpace, D: Domain,