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