コード例 #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
ファイル: Spectrum.py プロジェクト: techscientist/pymir
 def ifft(self):
     """
     Compute the Inverse FFT
     """
     return Transforms.ifft(self)
コード例 #7
0
ファイル: Spectrum.py プロジェクト: techscientist/pymir
 def idct(self):
     """
     Compute the Inverse Discrete Cosine Transform (IDCT)
     """
     return Transforms.idct(self)
コード例 #8
0
ファイル: Frame.py プロジェクト: TAntonio/vocal-emotion
 def dct(self):
     """
     Compute the Discrete Cosine Transform (DCT)
     """
     return Transforms.dct(self)
コード例 #9
0
ファイル: Frame.py プロジェクト: TAntonio/vocal-emotion
 def cqt(self):
     """
     Compute the Constant Q Transform (CQT)
     """
     return Transforms.cqt(self)
コード例 #10
0
ファイル: Frame.py プロジェクト: TAntonio/vocal-emotion
 def spectrum(self):
     """
     Compute the spectrum using an FFT
     Returns an instance of Spectrum
     """
     return Transforms.fft(self)