https://github.com/pmuens/linear-algebra
Some functions to do computations when using linear algebra
https://github.com/pmuens/linear-algebra
Last synced: 4 days ago
JSON representation
Some functions to do computations when using linear algebra
- Host: GitHub
- URL: https://github.com/pmuens/linear-algebra
- Owner: pmuens
- Created: 2018-09-09T08:45:52.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-09T15:34:11.000Z (about 7 years ago)
- Last Synced: 2025-06-13T07:04:37.004Z (4 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Linear Algebra
Some util functions to perform linear algebra computations.
## Usage
```javascript
const Vector = require('./vector')const vector1 = new Vector([1, 2, 3])
const vector2 = new Vector([10, 4, 2])const res = vector1.add(vector2)
console.log(res)
```