# 16

> A scientific Computing Library like R and Matlab

Latest version **0.0.2** (published 2016-03-30) · ISC license · 0 weekly downloads

## Install

```sh
npm install 16
pnpm add 16
yarn add 16
bun add 16
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2016-03-30 |
| First published | 2016-03-30 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | oo |
| Maintainers | li16 |
| Keywords | R, Matlab, Matrix, Statistics |

## Links

- npm: https://www.npmjs.com/package/16
- Repository: non
- npm.io page: https://npm.io/package/16

## Dependencies (1)

- [numeric](https://npm.io/package/numeric.md) ^1.2.6

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.0.2 (latest) — 2016-03-30
- 0.0.1 — 2016-03-30

## README

jslab -- A Scientific Computing Library like R and Matlab

## Introduction

```
npm install jslab
```

## Use jslab

file : jslab_test.js

```javascript
var J = require("jslab");
var C = console;

var A = [[1,2,3],[3,2,2],[4,3,5]];
C.log("A=\n", J.str(A));

var iA = J.inv(A);
C.log("iA=\n", J.str(iA));

var AiA = J.dot(A, iA);
C.log("A*iA=\n", J.str(AiA));
```

## run

```
$ node jslab_test
A=
 [[          1,          2,          3],
 [          3,          2,          2],
 [          4,          3,          5]]
iA=
 [[    -0.5714,     0.1429,     0.2857],
 [          1,          1,         -1],
 [    -0.1429,    -0.7143,     0.5714]]
A*iA=
 [[          1,          0,          0],
 [ -1.665e-16,          1,  -2.22e-16],
 [ -4.441e-16,  4.441e-16,          1]]
```

## Information

You may mail to ccckmit@gmail.com to contact the author.

Enjoy it !

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