richardeoin / nodejs-simple-fft

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nodejs-simple-fft is a node.js module that is a quick wrapper for this module. It's just a very basic thing I've put together for my own use, you're probably better off using the original library.

Installation

You can add this to your node.js package.json

	"dependencies": {
		"simple-fft": "git+ssh://git@github.com:richardeoin/nodejs-simple-fft.git",
	}

And if you have npm installed, just run npm install.

Usage

var fft = require('simple-fft');

var bins = fft([ 3, 1, 2, 3, 4, 3 ]);

That's it.

LICENSE

MIT

About

License:MIT License


Languages

Language:JavaScript 100.0%