complex 0.8.0 copy "complex: ^0.8.0" to clipboard
complex: ^0.8.0 copied to clipboard

A representation of a complex number, i.e. a number which has both a real and imaginary part.

example/main.dart

import 'package:complex/complex.dart';

void main() {
  const z1 = Complex(1);
  const z2 = Complex(3, 4);

  print(z1.abs()); // 1.0
  print(z2.abs()); // 5.0
  print(z2.conjugate()); // (3.0, -4.0)
}
copied to clipboard
10
likes
140
points
1.69k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

A representation of a complex number, i.e. a number which has both a real and imaginary part.

Repository (GitHub)

Documentation

API reference

License

unknown (license)

Dependencies

meta

More

Packages that depend on complex