Fast linear algebra implemented using Pharo Lapack.
# Linear Algebra [](https://github.com/pharo-ai/linear-algebra/actions/workflows/test.yml) [](https://coveralls.io/github/pharo-ai/linear-algebra?branch=master) [](https://raw.githubusercontent.com/pharo-ai/linear-algebra/master/LICENSE) Fast linear algebra implemented using [Pharo Lapack](https://github.com/pharo-ai/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](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or Ctrl+D): ```Smalltalk 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: ```Smalltalk spec baseline: 'AILinearAlgebra' with: [ spec repository: 'github://pharo-ai/linear-algebra/src' ]. ```