slangmath 1.0.6 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +54 -23
- package/slang-complex.js +954 -0
- package/slang-linalg.js +1156 -0
- package/slang-math.js +83 -8
- package/slang-ode.js +1082 -0
- package/slang-stats.js +1206 -0
- package/slang-symbolic.js +1616 -0
package/package.json
CHANGED
|
@@ -1,23 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "slangmath",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"
|
|
21
|
-
},
|
|
22
|
-
"
|
|
23
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "slangmath",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "Saad's Language for Analytical Numerics and Geometry — advanced symbolic mathematics, calculus, ODE/PDE solvers, linear algebra, statistics, and complex analysis. Zero dependencies. Pure JavaScript.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./slang-math.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./slang-math.js",
|
|
9
|
+
"./basic": "./slang-basic.js",
|
|
10
|
+
"./symbolic": "./slang-symbolic.js",
|
|
11
|
+
"./advanced": "./slang-advanced.js",
|
|
12
|
+
"./ode": "./slang-ode.js",
|
|
13
|
+
"./linalg": "./slang-linalg.js",
|
|
14
|
+
"./stats": "./slang-stats.js",
|
|
15
|
+
"./complex": "./slang-complex.js",
|
|
16
|
+
"./helpers": "./slang-helpers.js",
|
|
17
|
+
"./convertor": "./slang-convertor.js",
|
|
18
|
+
"./extended": "./slang-extended.js",
|
|
19
|
+
"./cache": "./slang-cache.js",
|
|
20
|
+
"./errors": "./slang-errors.js"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"test": "node --experimental-vm-modules node_modules/.bin/jest"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"math",
|
|
27
|
+
"calculus",
|
|
28
|
+
"symbolic",
|
|
29
|
+
"mathematics",
|
|
30
|
+
"algebra",
|
|
31
|
+
"ode",
|
|
32
|
+
"pde",
|
|
33
|
+
"differential-equations",
|
|
34
|
+
"linear-algebra",
|
|
35
|
+
"statistics",
|
|
36
|
+
"probability",
|
|
37
|
+
"complex-analysis",
|
|
38
|
+
"fft",
|
|
39
|
+
"quaternion",
|
|
40
|
+
"polynomial",
|
|
41
|
+
"latex",
|
|
42
|
+
"numerical-methods"
|
|
43
|
+
],
|
|
44
|
+
"author": "Muhammad Saad Amin — @SENODROOM",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "git+https://github.com/SENODROOM/SLaNg.git"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/SENODROOM/SLaNg/issues"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://github.com/SENODROOM/SLaNg#readme"
|
|
54
|
+
}
|