Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cshaa/densematrix.js
DenseMatrix library forked from math.js
https://github.com/cshaa/densematrix.js
Last synced: about 2 months ago
JSON representation
DenseMatrix library forked from math.js
- Host: GitHub
- URL: https://github.com/cshaa/densematrix.js
- Owner: cshaa
- License: apache-2.0
- Created: 2021-11-08T22:23:25.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-09T17:15:08.000Z (about 3 years ago)
- Last Synced: 2024-11-26T02:43:50.167Z (about 2 months ago)
- Language: TypeScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DenseMatrix.js
A TypeScript tensor arithmetics library that supports [Arithmetic Types](https://github.com/m93a/arithmetic-types). Forked from [math.js](https://mathjs.org/docs/reference/classes/densematrix.html).## Example
```typescript
import { DenseMatrix } from 'densematrix.js'
const A = DenseMatrix([[1,2],[3,4]])
const B = DenseMatrix([[0,1],[1,0]])
```