rl_matrix 0.6.5 copy "rl_matrix: ^0.6.5" to clipboard
rl_matrix: ^0.6.5 copied to clipboard

Dart 1 only

Provides an immutable implementation for matrices of real numbers in Dart, based on Java's JAMA package.

RL-matrix #

Provides an immutable implementation for matrices of real numbers in Dart, based on Java's JAMA package.

Build Status

Usage #

Example:

// Instantiates the following matrix:
//
//     1.0 2.0 3.0
//     4.0 5.0 6.0
//
var matrix = new Matrix([
  [1.0, 2.0, 3.0],
  [4.0, 5.0, 6.0]
]);

var transpose = matrix.transpose;
var product = matrix * transpose;

For a complete overview of the operations available, have a look at the API documentation for the Matrix class.

0
likes
25
pub points
0%
popularity

Publisher

unverified uploader

Provides an immutable implementation for matrices of real numbers in Dart, based on Java's JAMA package.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

collection, quiver

More

Packages that depend on rl_matrix