Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 29 days 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-10T14:29:07.000Z (almost 2 years ago)
- Last Synced: 2023-03-07T00:10:38.786Z (almost 2 years ago)
- Topics: linear-algebra, pharo, smalltalk
- Language: Smalltalk
- Homepage:
- Size: 93.8 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linear Algebra
[![Build status](https://github.com/pharo-ai/linear-algebra/workflows/CI/badge.svg)](https://github.com/pharo-ai/linear-algebra/actions/workflows/test.yml)
[![Coverage Status](https://coveralls.io/repos/github/pharo-ai/linear-algebra/badge.svg?branch=master)](https://coveralls.io/github/pharo-ai/linear-algebra?branch=master)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](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' ].
```