Giter Site home page Giter Site logo

melihaltun / mydft Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 10 KB

Real and complex Discrete Fourier Transform and inverse Discrete Fourier Transform functions

License: MIT License

C 100.00%
dft fourier-analysis fourier-transform signal-processing digital-signal-processing discrete-fourier-transform

mydft's Introduction

myDFT

Real and complex Discrete Fourier Transform and inverse Discrete Fourier Transform functions

Even though FFT is faster than DFT, sometimes memory is the limiting factor rather than time. Moreover, for small arbitrary size inputs, the computational overhead of buffer allocations may negate the speed advantage of FFT. DFT also has the advantage of being able to calculate specific frequency bins without calcuating the whole spectrum. In that particular use case, DFT computational complexity is O(N) which beats the O(NlogN) complexity of FFT. In such cases, DFT might be better suited to an application than FFT.

This code has several functions that can perform real and complex DFT/iDFT operations. There are functions that target specific frequency bins and only calculate results for them. Before the operations a DFT object must be declared and its buffers must be allocated with the set_dft_instance() function. After the operations delete_dft_instance() function is required to release the allocated memory.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.