pub package

Advanced Math library for Dart with support for Complex, FFT and Convolutions.

Getting Started

In your pubspec.yaml file add:

dependencies:
  maths: any

Then, in your code import and use the package:

import 'package:maths/maths.dart';

final i = Complex(0, 1);
print(i);

Libraries

maths
Advanced Math library for Dart with support for Complex, FFT and Convolutions.