Ejemplo n.º 1
0
 def ifft(self):
     """
     Compute the Inverse FFT
     """
     return Transforms.ifft(self)
Ejemplo n.º 2
0
 def dct(self):
     """
     Compute the Discrete Cosine Transform (DCT)
     """
     return Transforms.dct(self)
Ejemplo n.º 3
0
 def idct(self):
     """
     Compute the Inverse Discrete Cosine Transform (IDCT)
     """
     return Transforms.idct(self)
Ejemplo n.º 4
0
 def spectrum(self):
     """
     Compute the spectrum using an FFT
     Returns an instance of Spectrum
     """
     return Transforms.fft(self)
Ejemplo n.º 5
0
 def cqt(self):
     """
     Compute the Constant Q Transform (CQT)
     """
     return Transforms.cqt(self)
Ejemplo n.º 6
0
 def ifft(self):
     """
     Compute the Inverse FFT
     """
     return Transforms.ifft(self)
Ejemplo n.º 7
0
 def idct(self):
     """
     Compute the Inverse Discrete Cosine Transform (IDCT)
     """
     return Transforms.idct(self)
Ejemplo n.º 8
0
 def dct(self):
     """
     Compute the Discrete Cosine Transform (DCT)
     """
     return Transforms.dct(self)
Ejemplo n.º 9
0
 def cqt(self):
     """
     Compute the Constant Q Transform (CQT)
     """
     return Transforms.cqt(self)
Ejemplo n.º 10
0
 def spectrum(self):
     """
     Compute the spectrum using an FFT
     Returns an instance of Spectrum
     """
     return Transforms.fft(self)