Skip to content

sinanhaci/dart_lang_fft

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 = new FFT().Transform(windowed);
}

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

fft library for dart.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 100.0%