class DSP::Transforms::Radix5

Defined in:

dsp/transforms/radix_5.cr

Constant Summary

PI_BY_FIVE = Math.sin(Math::PI / 5.0)
PI_BY_FIVE_OVER_TWO_PI_BY_FIVE = PI_BY_FIVE / TWO_PI_BY_FIVE
ROOT_FIVE = (Math.sqrt(5)) / 4.0
TWO_PI_BY_FIVE = Math.sin((Math::PI * 2) / 5.0)

Class Method Summary

Class Method Detail

def self.fft(input : Array) : Array(Complex) #

[View source]
def self.fft_helper(input : Array, forward? : Bool = true) : Array(Complex) #

[View source]
def self.ifft(input : Array) : Array(Complex) #

[View source]