An open API service indexing awesome lists of open source software.

https://github.com/xclud/dart_maths

Advanced Math library for Dart with support for Complex, FFT and Convolutions.
https://github.com/xclud/dart_maths

Last synced: 2 months ago
JSON representation

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

Awesome Lists containing this project

README

          

[![pub package](https://img.shields.io/pub/v/maths.svg)](https://pub.dartlang.org/packages/maths)

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

## Getting Started

In your `pubspec.yaml` file add:

```dart
dependencies:
maths: any
```

Then, in your code import and use the package:

```dart
import 'package:maths/maths.dart';

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