Fast linear algebra implemented using Pharo Lapack.
For the documentation, please refer to the pharo-ai wiki page: https://github.com/pharo-ai/wiki/blob/master/wiki/LinearAlgebra/LinearAlgebra.md
To install linear-algebra
, go to the Playground (Ctrl+O+W) in your Pharo image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):
Metacello new
baseline: 'AILinearAlgebra';
repository: 'github://pharo-ai/linear-algebra/src';
load.
If you want to add a dependency on linear-algebra
to your project, include the following lines into your baseline method:
spec
baseline: 'AILinearAlgebra'
with: [ spec repository: 'github://pharo-ai/linear-algebra/src' ].