https://github.com/polymathorg/vector-matrix
A separate repository containing PMMatrix and PMVector - two custom data structures of PolyMath
https://github.com/polymathorg/vector-matrix
pharo
Last synced: 4 months ago
JSON representation
A separate repository containing PMMatrix and PMVector - two custom data structures of PolyMath
- Host: GitHub
- URL: https://github.com/polymathorg/vector-matrix
- Owner: PolyMathOrg
- License: mit
- Created: 2022-05-03T16:36:41.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-01T21:48:42.000Z (over 2 years ago)
- Last Synced: 2025-03-31T23:30:03.824Z (9 months ago)
- Topics: pharo
- Language: Smalltalk
- Homepage:
- Size: 123 KB
- Stars: 1
- Watchers: 6
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[PolyMath: Vector Matrix]
Scientific Computing with Pharo
Explore the docs »
Report a defect
|
Request feature
[](https://github.com/PolyMathOrg/vector-matrix/actions/workflows/test.yml)
[](https://coveralls.io/github/PolyMathOrg/vector-matrix?branch=master)
[](https://raw.githubusercontent.com/PolyMathOrg/vector-matrix/master/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):
```smalltalk
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:
```smalltalk
spec
baseline: 'MathVectorMatrix'
with: [ spec repository: 'github://PolyMathOrg/vector-matrix/src' ]
```
If you are new to baselines and Metacello, check out the [Baselines](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md) tutorial on Pharo Wiki.