pub trait SymmetricTimeToFrequencyDomainOperations<S, T>: ToFreqResultwhere
S: ToSliceMut<T>,
T: RealNumber,{
// Required methods
fn plain_sfft<B>(self, buffer: &mut B) -> TransRes<Self::FreqResult>
where B: for<'a> Buffer<'a, S, T>;
fn sfft<B>(self, buffer: &mut B) -> TransRes<Self::FreqResult>
where B: for<'a> Buffer<'a, S, T>;
fn windowed_sfft<B>(
self,
buffer: &mut B,
window: &dyn WindowFunction<T>,
) -> TransRes<Self::FreqResult>
where B: for<'a> Buffer<'a, S, T>;
}Expand description
Defines all operations which are valid on DataVecs containing real time domain data.
§Failures
All operations in this trait set self.len() to 0 if the vector isn’t in time domain or
with VectorMustHaveAnOddLength if self.points() isn’t and odd number.
Required Methods§
Sourcefn plain_sfft<B>(self, buffer: &mut B) -> TransRes<Self::FreqResult>where
B: for<'a> Buffer<'a, S, T>,
fn plain_sfft<B>(self, buffer: &mut B) -> TransRes<Self::FreqResult>where
B: for<'a> Buffer<'a, S, T>,
Performs a Symmetric Fast Fourier Transformation under the assumption that self
is symmetric around the center. This assumption
isn’t verified and no error is raised if the vector isn’t symmetric.
This version of the IFFT neither applies a window nor does it scale the vector.
§Failures
TransRes may report the following ErrorReason members:
VectorMustBeReal: ifselfis in complex number space.VectorMustBeInTimeDomain: ifselfis in frequency domain.
Sourcefn sfft<B>(self, buffer: &mut B) -> TransRes<Self::FreqResult>where
B: for<'a> Buffer<'a, S, T>,
fn sfft<B>(self, buffer: &mut B) -> TransRes<Self::FreqResult>where
B: for<'a> Buffer<'a, S, T>,
Performs a Symmetric Fast Fourier Transformation under the assumption that self
is symmetric around the center. This assumption
isn’t verified and no error is raised if the vector isn’t symmetric.
§Failures
TransRes may report the following ErrorReason members:
VectorMustBeReal: ifselfis in complex number space.VectorMustBeInTimeDomain: ifselfis in frequency domain.
Sourcefn windowed_sfft<B>(
self,
buffer: &mut B,
window: &dyn WindowFunction<T>,
) -> TransRes<Self::FreqResult>where
B: for<'a> Buffer<'a, S, T>,
fn windowed_sfft<B>(
self,
buffer: &mut B,
window: &dyn WindowFunction<T>,
) -> TransRes<Self::FreqResult>where
B: for<'a> Buffer<'a, S, T>,
Performs a Symmetric Fast Fourier Transformation under the assumption that self
is symmetric around the center. This assumption
isn’t verified and no error is raised if the vector isn’t symmetric.
§Failures
TransRes may report the following ErrorReason members:
VectorMustBeReal: ifselfis in complex number space.VectorMustBeInTimeDomain: ifselfis in frequency domain.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.