项目作者: pharo-ai

项目描述 :
Linear Algebra classes for Pharo
高级语言: Smalltalk
项目地址: git://github.com/pharo-ai/linear-algebra.git
创建时间: 2020-11-25T14:38:17Z
项目社区:https://github.com/pharo-ai/linear-algebra

开源协议:MIT License

下载


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):

  1. Metacello new
  2. baseline: 'AILinearAlgebra';
  3. repository: 'github://pharo-ai/linear-algebra/src';
  4. 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:

  1. spec
  2. baseline: 'AILinearAlgebra'
  3. with: [ spec repository: 'github://pharo-ai/linear-algebra/src' ].