Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.3 KB

README.md

File metadata and controls

30 lines (21 loc) · 1.3 KB

Linear Algebra

Build status Coverage Status License

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

How to install it

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.

How to depend on it

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' ].