maths 0.0.2
maths: ^0.0.2 copied to clipboard
Advanced Math library for Dart with support for Complex, FFT and Convolutions.
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);