Socket
Socket
Sign inDemoInstall

algebrite

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

algebrite - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

8

package.json
{
"name": "algebrite",
"version": "0.2.1",
"version": "0.2.2",
"description": "Computer Algebra System in Coffeescript",

@@ -14,3 +14,3 @@ "main": "dist/algebrite.js",

"type": "git",
"url": "git+https://github.com/davidedc/Algebrite.git"
"url": "git+https://github.com/antimatter15/Algebrite.git"
},

@@ -30,5 +30,5 @@ "keywords": [

"bugs": {
"url": "https://github.com/davidedc/Algebrite/issues"
"url": "https://github.com/antimatter15/Algebrite/issues"
},
"homepage": "https://github.com/davidedc/Algebrite#readme",
"homepage": "https://github.com/antimatter15/Algebrite#readme",
"dependencies": {

@@ -35,0 +35,0 @@ "big-integer": "^1.6.15"

@@ -1,17 +0,20 @@

<img src="https://raw.githubusercontent.com/davidedc/Algebrite/master/readme-images/algebrite-logo-for-readme.png" width="150px" alt="algebrite header"/>
Algebrite is a Javascript library for symbolic mathematics (actually, mostly coffeescript resulting in Javascript) keeping the code as simple as possible in order to be comprehensible and easily extensible.
This is a fork of Algebrite which has a nicer Javascript interface and packaged in a format appropriate for NPM.
Algebrite is a pure Javascript (technically, Coffeescript) port of the lightweight EigenMath Computer Algebra System.
# Why Algebrite
Algebrite is...
* lightweight: made to be simple to comprehend and extend, it only depends on BigInteger.js by Peter Olson.
* self-contained: doesn't need connection to servers or another "backend" CAS
* a library: beyond use as an interactive tool, algebrite can be embedded in your applications and extended with custom functions.
* free: MIT-Licenced
```
var Algebrite = require('algebrite')
Algebrite.run('x + x') // => "2 x"
Algebrite.factor('10!').toString() // => "2^8 3^4 5^2 7"
Algebrite.eval('integral(x^2)') // => "1/3 x^3"
```
# Features
Algebrite supports: arbitrary-precision arithmetic, complex quantities, simplification, expansion , substitution, symbolic and numeric roots, units of measurement, matrices, derivatives and gradients, tensors, integrals, multi-integrals, computing integrals and much more!

@@ -23,10 +26,2 @@

```
var Algebrite = require('algebrite')
Algebrite.run('x + x') // => 2 x
Algebrite.factor('10!').toString() // => 2^8 3^4 5^2 7
```
All the built-in methods in EigenMath/Algebrite are exposed through a javascript interface. Strings are automatically parsed as expressions, numbers are converted into the appropriate representation, and the internal cons objects are returned.

@@ -33,0 +28,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc