Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nirvanasupermind/lynx-js
Numerical analysis and number theory library for JavaScript
https://github.com/nirvanasupermind/lynx-js
Last synced: 9 days ago
JSON representation
Numerical analysis and number theory library for JavaScript
- Host: GitHub
- URL: https://github.com/nirvanasupermind/lynx-js
- Owner: nirvanasupermind
- License: mit
- Created: 2021-01-31T03:14:24.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-16T06:36:53.000Z (almost 4 years ago)
- Last Synced: 2024-12-15T00:27:27.407Z (25 days ago)
- Language: JavaScript
- Homepage:
- Size: 200 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lynx-js
[![npm version](https://badge.fury.io/js/lynx-js.svg)](https://badge.fury.io/js/lynx-js)
**lynx** is a package for numerical analysis and number theory in JavaScript, with numpy-like API. It contains (among other things):
* Creation and manipulation of nD tensors
* Manipulation of [dual numbers](https://mathworld.wolfram.com/DualNumber.html)
* Universal functions which work on multiple classeslynx has no run-time dependencies. The lynx module is designed to be able to be run from Node.JS.
# Load
This library is available in Node from the npm registry
$ npm install lynx-js
And you can import it like this:
```js
var lynx = require("lynx-js")
```# API
See [API.md](API.md).# License
lynx is licensed under the MIT License.