[−][src]Trait basic_dsp_vector::conv_types::ComplexFrequencyResponse
A convolution function in frequency domain and complex number space
Required methods
pub fn is_symmetric(&self) -> bool[src]
Indicates whether this function is symmetric around 0 or not.
Symmetry is defined as self.calc(x) == self.calc(-x).
pub fn calc(&self, x: T) -> Complex<T>[src]
Calculates the convolution for a data point
Trait Implementations
impl<'a, S, T, N, D> FrequencyMultiplication<'a, S, T, &'a (dyn ComplexFrequencyResponse<T> + 'a)> for DspVec<S, T, N, D> where
S: ToSliceMut<T>,
T: RealNumber,
N: ComplexNumberSpace,
D: FrequencyDomain, [src]
S: ToSliceMut<T>,
T: RealNumber,
N: ComplexNumberSpace,
D: FrequencyDomain,
pub fn multiply_frequency_response(
&mut self,
frequency_response: &dyn ComplexFrequencyResponse<T>,
ratio: T
)[src]
&mut self,
frequency_response: &dyn ComplexFrequencyResponse<T>,
ratio: T
)