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