Scientific Computing with Pharo
Explore the docs »
Report a defect
|
Request feature
A project to manage the data structures of PolyMaths. It currently includes the Vector and Matrix Pharo implementation.
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.