Linear Algebra classes for Pharo ported from Moose
To install Moose Linear Algebra, go to the Playground (Ctrl+OW) in your Pharo image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):
Metacello new
baseline: 'AIMooseLinearAlgebra';
repository: 'github://pharo-ai/moose-linear-algebra/src';
load.
If you want to add a dependency on Moose Linear Algebra to your project, include the following lines into your baseline method:
spec
baseline: 'AIMooseLinearAlgebra'
with: [ spec repository: 'github://pharo-ai/moose-linear-algebra/src' ].
If you are new to baselines and Metacello, check out the Baselines tutorial on Pharo Wiki.
WiP