# matrix-class

> A Matrix class implementation with it's basic mathematical features

Latest version **1.0.0** (published 2018-03-04) · MIT license · 0 weekly downloads

## Install

```sh
npm install matrix-class
pnpm add matrix-class
yarn add matrix-class
bun add matrix-class
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-03-04 |
| First published | 2018-03-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 12.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Tuomas Nylund |
| Maintainers | tunylund |
| Keywords | Matrix, Math, algebra |

## Links

- npm: https://www.npmjs.com/package/matrix-class
- Repository: https://github.com/tunylund/matrix-class
- Homepage: https://github.com/tunylund/matrix-class#readme
- Issues: https://github.com/tunylund/matrix-class/issues
- npm.io page: https://npm.io/package/matrix-class

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2018-03-04

## README

# matrix.js
A matrix class implementation with basic algebra functionalities

# Usage
```
import Matrix from 'matrix'

const matrix2By3Builder = Matrix.matrix(2,3)
const 2By3MatrixWith6Values = matrix2By3Builder(1, 2, 3, 4, 5, 6)
// => |1, 2, 3|
//    |4, 5, 6|

const 3by3IdentityMatrix = Matrix.identity(3)
// => |1, 0, 0|
//    |0, 1, 0|
//    |0, 0, 1|
```

see https://github.com/tunylund/matrix-class/lib/matrix.js for detailed documentation of Matrix features

---
_Source: https://npm.io/package/matrix-class · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
