fft 0.5.1 copy "fft: ^0.5.1" to clipboard
fft: ^0.5.1 copied to clipboard

A library for fourier transformations using the Cooley-Tukey algorithm

dart #

An implementation of Cooley-Tukey. Also included are the windowing functions Hann and Hamming

Usage #

A simple usage example:

import 'package:fft/fft.dart';

main() {
	   var data = [1.0, 0.0, -1.0, 0.0];
	   var windowed = Window.Hann(data);
	   var fft = FFT.Transform(windowed);
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

8
likes
125
points
149
downloads

Publisher

unverified uploader

Weekly Downloads

A library for fourier transformations using the Cooley-Tukey algorithm

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

complex, tuple

More

Packages that depend on fft