fft_nullsafety 0.2.1

SDKdartflutter
Platformandroidioswindowslinuxmacosweb

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

Features and bugs

Please file feature requests and bugs at the issue tracker.

This library has been updated to work with Dart SDK version 3.4.1 (stable) and now includes null safety.