Skip to content

belambert/cl-dct

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cl-dct

Build Status Coverage Status

Discrete cosine transform (DCT) is a signal processing algorithm that compresses a signal. It's similar to a Fourier transform. DCT is often used in speech recognition for computing MFCC features.

There are a number of different versions and implementations of DCT. This implementation mimics the one in Matlab. You should also get the same results in scipy with the command:

scipy.fftpack.dct([4., 3., 5., 10.], norm='ortho')

The idct() implementation is equivalent to the Matlab implementation and the scipy command:

scipy.fftpack.idct([4., 3., 5., 10.], norm='ortho')

This is an O(n²) implementation. O(n log(n)) implementations are also possible.

About

Discrete cosine transform in Common Lisp.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published