FFT

Struct FFT 

Source
pub struct FFT { /* private fields */ }
Expand description

FFT (Fast Fourier Transformation) object

This object computes forward and backward FFTs.

Depending on how aubio was compiled, FFT are computed using one of:

  • Ooura
  • FFTW3
  • vDSP

Implementations§

Source§

impl FFT

Source

pub fn new(win_size: usize) -> Result<Self>

Create new FFT computation object

Source

pub fn get_win(&self) -> usize

Get window size

Source

pub fn get_fft(&self) -> usize

Get fft size

Source

pub fn do_<'i, 'o, I, O>(&mut self, input: I, spectrum: O) -> Status
where I: Into<FVec<'i>>, O: Into<CVecMut<'o>>,

Compute forward (direct) FFT

Source

pub fn rdo<'i, 'o, I, O>(&mut self, spectrum: I, output: O) -> Status
where I: Into<CVec<'i>>, O: Into<FVecMut<'o>>,

Compute backward (inverse) FFT

Source

pub fn do_complex<'i, 'o, I, O>(&mut self, input: I, compspec: O) -> Status
where I: Into<FVec<'i>>, O: Into<FVecMut<'o>>,

Compute forward (direct) FFT

Source

pub fn rdo_complex<'i, 'o, I, O>(&mut self, compspec: I, output: O) -> Status
where I: Into<FVec<'i>>, O: Into<FVecMut<'o>>,

Compute backward (inverse) FFT

Source

pub fn get_spectrum<'i, 'o, I, O>(compspec: I, spectrum: O) -> Status
where I: Into<FVec<'i>>, O: Into<CVecMut<'o>>,

Convert real/imag spectrum to norm/phas spectrum

Source

pub fn get_realimag<'i, 'o, I, O>(spectrum: I, compspec: O) -> Status
where I: Into<CVec<'i>>, O: Into<FVecMut<'o>>,

Convert norm/phas spectrum to real/imag spectrum

Source

pub fn get_phas<'i, 'o, I, O>(compspec: I, spectrum_phas: O) -> Status
where I: Into<FVec<'i>>, O: Into<CVecPhasMut<'o>>,

Compute phas spectrum from real/imag parts

Source

pub fn get_norm<'i, 'o, I, O>(compspec: I, spectrum_norm: O) -> Status
where I: Into<FVec<'i>>, O: Into<CVecNormMut<'o>>,

Compute norm component from real/imag parts

Source

pub fn get_imag<'i, 'o, I, O>(spectrum: I, compspec: O) -> Status
where I: Into<CVec<'i>>, O: Into<FVecMut<'o>>,

Compute imaginary part from the norm/phas cvec

Source

pub fn get_real<'i, 'o, I, O>(spectrum: I, compspec: O) -> Status
where I: Into<CVec<'i>>, O: Into<FVecMut<'o>>,

Compute real part from the norm/phas cvec

Trait Implementations§

Source§

impl Drop for FFT

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl Freeze for FFT

§

impl RefUnwindSafe for FFT

§

impl !Send for FFT

§

impl !Sync for FFT

§

impl Unpin for FFT

§

impl UnwindSafe for FFT

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.