Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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]])
```