colt 0.2.0 copy "colt: ^0.2.0" to clipboard
colt: ^0.2.0 copied to clipboard

Dart 1 only

Vector and matrix algebra package

Colt #

A Dart library for vector and matrix algebra.

Includes fixed sized (non-resizable) dense and sparse matrices for int, double and Complex types.

A Dart translation of ParallelColt which in turn is based on the original Colt project from CERN.

Build Status Coverage Status

Example #

import 'package:colt/colt.dart';

main() {
  var c = new ComplexVector(17);
  c.fill(3.0, 4.0);
  print(c.abs());
}

np #

An interface to Colt resembling NumPy.

Example #

import 'package:colt/np.dart' as np;

main() {
  var a = np.array([1, 2, 3]);
  var b = a * np.sin(a);
}
0
likes
0
points
38
downloads

Publisher

unverified uploader

Weekly Downloads

Vector and matrix algebra package

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

complex, intl, quiver

More

Packages that depend on colt