complex_matrix 0.0.6 copy "complex_matrix: ^0.0.6" to clipboard
complex_matrix: ^0.0.6 copied to clipboard

outdatedDart 1 only

A simple library for complex matrices

complex_matrix #

A library for Dart developers. It is awesome.

Usage #

A simple usage example:

import 'package:complex_matrix/complex_matrix.dart';

main() {
  var m1 = new new ComplexMatrix.fromIterable(2,2,
[new Complex(2,0), new Complex(-1,0), new Complex(-3,0), new Complex(4,0)]);
  print(ComplexMatrix.Identity(3) == ComplexMatrix.Identity(3).inverse());
  print(m1.getCofactor());
}

Features and bugs #

0.0.2 fixed bug in cofactor function

0.0.3 added getConjugate() method. BREAKING CHANGES: renamed methods for consistancy

0.0.4 added AreSimilar to compare Complex numbers

0.0.5 bug fixes

Please file feature requests and bugs at the issue tracker.

1
likes
15
pub points
0%
popularity

Publisher

unverified uploader

A simple library for complex matrices

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

fft

More

Packages that depend on complex_matrix