https://github.com/pharo-ai/linear-algebra
Fast linear algebra implemented using Pharo Lapack.
https://github.com/pharo-ai/linear-algebra
linear-algebra pharo smalltalk
Last synced: 3 months ago
JSON representation
Fast linear algebra implemented using Pharo Lapack.
- Host: GitHub
- URL: https://github.com/pharo-ai/linear-algebra
- Owner: pharo-ai
- License: mit
- Created: 2022-04-21T15:14:26.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T14:29:07.000Z (over 2 years ago)
- Last Synced: 2025-03-25T05:04:02.576Z (3 months ago)
- Topics: linear-algebra, pharo, smalltalk
- Language: Smalltalk
- Homepage:
- Size: 93.8 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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' ].
```