class DSP::FrequencyDomain

Overview

Frequency domain analysis class. On instantiation a forward FFT is performed on the given time series data, and the results are stored in full and half form. The half-FFT form cuts out the latter half of the FFT results. Also, for the half-FFT the complex values will be converted to magnitude (linear or decibel) if specified in :fft_format (see FFT_FORMATS for valid values).

Defined in:

dsp/analysis/frequency_domain.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(data : Array(Float64), sample_rate : Float64) #

[View source]

Instance Method Detail

def freq_magnitudes #

[View source]
def freq_magnitudes_db #

[View source]
def freq_to_idx(freq) #

Convert an FFT frequency bin to the corresponding FFT output index


[View source]
def idx_to_freq(idx) #

Convert an FFT output index to the corresponding frequency bin


[View source]
def peaks #

Find frequency peak values.


[View source]
def peaks_db #

Find frequency peak values.


[View source]