pub type RealFreqVec32 = DspVec<Vec<f32>, f32, Real, Freq>;Expand description
A vector with real numbers in frequency domain.
Aliased Type§
pub struct RealFreqVec32 {
pub data: Vec<f32>,
/* private fields */
}Fields§
§data: Vec<f32>The underlying storage. self.len() should be called to find out how many
elements in data contain valid data.