Skip to content

Instantly share code, notes, and snippets.

@shovon
shovon / dft.js
Created December 4, 2014 01:11
Discrete Fourier Transform in JavaScript
function createComplex(real, imag) {
return {
real: real,
imag: imag
};
}
function dft(samples, inverse) {
var len = samples.length;
var arr = Array(len);