olekscode / vector-matrix

A separate repository containing PMMatrix and PMVector - two custom data structures of PolyMath

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PolyMath

[PolyMath: Vector Matrix]

Scientific Computing with Pharo
Explore the docs »

Report a defect | Request feature

CI Coverage Status License

Description

A project to manage the data structures of PolyMaths. It currently includes the Vector and Matrix Pharo implementation.

Installation

You can load all the packages into a fresh Pharo image by going to the Playground (Ctrl + OW/Cmd + OW) and executing the following expression (select it and press Do-it button or Ctrl+D/Cmd+D):

    Metacello new
        baseline: 'MathVectorMatrix';
        repository: 'github://PolyMathOrg/vector-matrix/src';
	onWarningLog;
	onConflictUseIncoming;
        load ]

This should load the default version of the project (you can also specify another version or branch).

To add it to your Baseline:

    spec
	    baseline: 'MathVectorMatrix'
	    with: [ spec repository: 'github://PolyMathOrg/vector-matrix/src' ]

If you are new to baselines and Metacello, check out the Baselines tutorial on Pharo Wiki.

About

A separate repository containing PMMatrix and PMVector - two custom data structures of PolyMath

License:MIT License


Languages

Language:Smalltalk 100.0%