colt 0.2.0
colt: ^0.2.0 copied to clipboard
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.
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);
}