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.
- Host: GitHub
- URL: https://github.com/xclud/dart_maths
- Owner: xclud
- License: mit
- Created: 2022-11-06T14:43:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-07T10:32:44.000Z (over 3 years ago)
- Last Synced: 2025-01-09T05:17:19.617Z (over 1 year ago)
- Language: Dart
- Homepage: https://pub.dev/packages/maths
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](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);
```