Coder Social home page Coder Social logo

fft's Introduction

FFT

Implementation of Cooley-Tukey FFT in python and some applications

Fast Polynomial Multiplication

Diagram of FFT multiplication

poly1 = [-3, 4, 8]
poly2 = [-1, -2, 5]
res = multiply_poly(poly1, poly2)
print("Multiplying (" + str_poly(poly1) + ") * (" + str_poly(poly2)  + ")")
print(str_poly_i(res)) 
Multiplying (-3x^0 + 4x^1 + 8x^2) * (-1x^0 + -2x^1 + 5x^2)
3.0x^0 + 2.0x^1 + -31.0x^2 + 4.0x^3 + 40.0x^4

Converting time domain signal to frequency domain

Sum of 30Hz signal of amplitude 5 and 5Hz signal of amplitude 1, with sample rate 1024Hz Sum of 30Hz signal of amplitude 5 and 5Hz signal of amplitude 1, with sample rate 1024Hz

One second sample from a song One second sample from a song

Spectrogram from file

Spectrogram of a beep used to censor a word Spectrogram of a beep used to censor a word

Spectrogram of a 440Hz tone of amplitude 10^-5 created in mathematica Spectrogram of a 440Hz tone of amplitude 10-5 created in mathematica


Spectrogram of a full song

fft's People

Contributors

chiragzq avatar

Watchers

James Cloos avatar  avatar

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.