Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sgraf812/sdft
Implementation of the sliding window DFT http://www.comm.toronto.edu/~dimitris/ece431/slidingdft.pdf
https://github.com/sgraf812/sdft
Last synced: about 2 months ago
JSON representation
Implementation of the sliding window DFT http://www.comm.toronto.edu/~dimitris/ece431/slidingdft.pdf
- Host: GitHub
- URL: https://github.com/sgraf812/sdft
- Owner: sgraf812
- Created: 2014-12-11T22:10:18.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-15T17:40:27.000Z (about 10 years ago)
- Last Synced: 2024-10-13T10:42:36.801Z (3 months ago)
- Language: C
- Homepage:
- Size: 160 KB
- Stars: 2
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SDFT
====This tiny C library computes an N-length DFT with the help of a sliding window DFT (SDFT).
How To Build
============This project uses CMake for project file generation. I'm using the EAP of CLion for working on this project, which supports CMake out of the box, but here are the steps to perform:
1. `$ cd /path/to/sdft`
2. `$ mkdir build` to have a folder where the project files can reside in an out of tree build
3. `$ cd build`
4. `$ cmake ..`Now, there should be appropriate project files in the `build/` directory, depending on which target cmake chose for you (or you chose), with which compilation should be straightforward (e.g. `$ make` or opening it in Visual Studio).
How To Use
==========
For instructions on how to use it, dig into test/main.c:compare_sdft_to_dft and read through the docstrings.