/dart_complex_matrix

a simple complex matrix library for dartlang

Primary LanguageDartBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

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.