nerdamer 1.1.13 → 2.0.0-rc.1
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/LICENSE.md +184 -0
- package/README.md +293 -312
- package/dist/bundle.js +2 -0
- package/dist/bundle.js.LICENSE.txt +7 -0
- package/dist/parser.js +2 -0
- package/dist/parser.js.LICENSE.txt +7 -0
- package/docs-data/parser-functions.json +1960 -0
- package/index.d.ts +10 -426
- package/output/algebra/adapters.d.ts +33 -0
- package/output/algebra/adapters.js +109 -0
- package/output/algebra/algorithms/arith.d.ts +84 -0
- package/output/algebra/algorithms/arith.js +323 -0
- package/output/algebra/algorithms/factor.d.ts +3 -0
- package/output/algebra/algorithms/factor.js +5 -0
- package/output/algebra/algorithms/factorMultivariate.d.ts +23 -0
- package/output/algebra/algorithms/factorMultivariate.js +2393 -0
- package/output/algebra/algorithms/factorUnivariate.d.ts +72 -0
- package/output/algebra/algorithms/factorUnivariate.js +1072 -0
- package/output/algebra/algorithms/gcd.d.ts +22 -0
- package/output/algebra/algorithms/gcd.js +690 -0
- package/output/algebra/algorithms/groebnerBase.d.ts +157 -0
- package/output/algebra/algorithms/groebnerBase.js +1166 -0
- package/output/algebra/algorithms/multiPoly/MultiPoly.d.ts +137 -0
- package/output/algebra/algorithms/multiPoly/MultiPoly.js +346 -0
- package/output/algebra/algorithms/poly.d.ts +228 -0
- package/output/algebra/algorithms/poly.js +1299 -0
- package/output/algebra/algorithms/rational.d.ts +17 -0
- package/output/algebra/algorithms/rational.js +115 -0
- package/output/algebra/factor/factor.d.ts +62 -0
- package/output/algebra/factor/factor.js +158 -0
- package/output/algebra/gcd/gcd.d.ts +29 -0
- package/output/algebra/gcd/gcd.js +141 -0
- package/output/algebra/groebner.d.ts +21 -0
- package/output/algebra/groebner.js +42 -0
- package/output/algebra/partfrac.d.ts +19 -0
- package/output/algebra/partfrac.js +398 -0
- package/output/algebra/polynomialize.d.ts +20 -0
- package/output/algebra/polynomialize.js +24 -0
- package/output/algebra/simplify/complexsimp.d.ts +7 -0
- package/output/algebra/simplify/complexsimp.js +24 -0
- package/output/algebra/simplify/factorCommon.d.ts +13 -0
- package/output/algebra/simplify/factorCommon.js +136 -0
- package/output/algebra/simplify/funcsimp.d.ts +26 -0
- package/output/algebra/simplify/funcsimp.js +633 -0
- package/output/algebra/simplify/invtrigrewrite.d.ts +10 -0
- package/output/algebra/simplify/invtrigrewrite.js +96 -0
- package/output/algebra/simplify/ratsimp.d.ts +21 -0
- package/output/algebra/simplify/ratsimp.js +140 -0
- package/output/algebra/simplify/simplify.d.ts +25 -0
- package/output/algebra/simplify/simplify.js +228 -0
- package/output/algebra/simplify/trigreduce.d.ts +38 -0
- package/output/algebra/simplify/trigreduce.js +424 -0
- package/output/algebra/simplify/trigrewrite.d.ts +17 -0
- package/output/algebra/simplify/trigrewrite.js +156 -0
- package/output/algebra/simplify/trigsimp.d.ts +11 -0
- package/output/algebra/simplify/trigsimp.js +369 -0
- package/output/algebra/simplify/utils.d.ts +32 -0
- package/output/algebra/simplify/utils.js +56 -0
- package/output/algebra/utils.d.ts +32 -0
- package/output/algebra/utils.js +48 -0
- package/output/api/advanced.d.ts +7 -0
- package/output/api/advanced.js +18 -0
- package/output/api/algebra.d.ts +17 -0
- package/output/api/algebra.js +32 -0
- package/output/api/assumptions.d.ts +4 -0
- package/output/api/assumptions.js +11 -0
- package/output/api/calculus.d.ts +9 -0
- package/output/api/calculus.js +21 -0
- package/output/api/core.d.ts +17 -0
- package/output/api/core.js +41 -0
- package/output/api/debug.d.ts +16 -0
- package/output/api/debug.js +23 -0
- package/output/api/parser.d.ts +85 -0
- package/output/api/parser.js +16 -0
- package/output/api/solve.d.ts +10 -0
- package/output/api/solve.js +16 -0
- package/output/api/structures.d.ts +10 -0
- package/output/api/structures.js +22 -0
- package/output/calculus/derivative/diff.d.ts +30 -0
- package/output/calculus/derivative/diff.js +238 -0
- package/output/calculus/fresnel.d.ts +16 -0
- package/output/calculus/fresnel.js +39 -0
- package/output/calculus/integrate/byParts.d.ts +18 -0
- package/output/calculus/integrate/byParts.js +339 -0
- package/output/calculus/integrate/bySubstitution.d.ts +135 -0
- package/output/calculus/integrate/bySubstitution.js +411 -0
- package/output/calculus/integrate/integrate.d.ts +38 -0
- package/output/calculus/integrate/integrate.js +652 -0
- package/output/calculus/integrate/integrationTable.d.ts +2 -0
- package/output/calculus/integrate/integrationTable.js +914 -0
- package/output/calculus/integrate/utils.d.ts +28 -0
- package/output/calculus/integrate/utils.js +96 -0
- package/output/calculus/laplace/ilaplace.d.ts +31 -0
- package/output/calculus/laplace/ilaplace.js +192 -0
- package/output/calculus/laplace/ilaplaceTable.d.ts +2 -0
- package/output/calculus/laplace/ilaplaceTable.js +200 -0
- package/output/calculus/laplace/laplace.d.ts +22 -0
- package/output/calculus/laplace/laplace.js +109 -0
- package/output/calculus/laplace/laplaceTable.d.ts +2 -0
- package/output/calculus/laplace/laplaceTable.js +187 -0
- package/output/calculus/limit/limit.d.ts +35 -0
- package/output/calculus/limit/limit.js +1183 -0
- package/output/calculus/limit/limitsTable.d.ts +2 -0
- package/output/calculus/limit/limitsTable.js +7 -0
- package/output/core/Settings.d.ts +32 -0
- package/output/core/Settings.js +68 -0
- package/output/core/adapters.d.ts +18 -0
- package/output/core/adapters.js +40 -0
- package/output/core/classes/assumption/Assumption.d.ts +218 -0
- package/output/core/classes/assumption/Assumption.js +605 -0
- package/output/core/classes/assumption/assertiveFunctions.d.ts +6 -0
- package/output/core/classes/assumption/assertiveFunctions.js +64 -0
- package/output/core/classes/assumption/assume.d.ts +90 -0
- package/output/core/classes/assumption/assume.js +145 -0
- package/output/core/classes/collection/Collection.d.ts +107 -0
- package/output/core/classes/collection/Collection.js +231 -0
- package/output/core/classes/complex/Complex.d.ts +99 -0
- package/output/core/classes/complex/Complex.js +135 -0
- package/output/core/classes/decimalSet/DecimalSet.d.ts +226 -0
- package/output/core/classes/decimalSet/DecimalSet.js +453 -0
- package/output/core/classes/dictionary/Dictionary.d.ts +102 -0
- package/output/core/classes/dictionary/Dictionary.js +213 -0
- package/output/core/classes/equation/Equation.d.ts +256 -0
- package/output/core/classes/equation/Equation.js +350 -0
- package/output/core/classes/expression/CoeffObject.d.ts +100 -0
- package/output/core/classes/expression/CoeffObject.js +198 -0
- package/output/core/classes/expression/Expression.d.ts +1674 -0
- package/output/core/classes/expression/Expression.js +2332 -0
- package/output/core/classes/expression/analysis.d.ts +25 -0
- package/output/core/classes/expression/analysis.js +218 -0
- package/output/core/classes/expression/collect.d.ts +9 -0
- package/output/core/classes/expression/collect.js +49 -0
- package/output/core/classes/expression/format.d.ts +45 -0
- package/output/core/classes/expression/format.js +217 -0
- package/output/core/classes/expression/products.d.ts +23 -0
- package/output/core/classes/expression/products.js +115 -0
- package/output/core/classes/expression/shortcuts.d.ts +35 -0
- package/output/core/classes/expression/shortcuts.js +129 -0
- package/output/core/classes/expression/traversal.d.ts +31 -0
- package/output/core/classes/expression/traversal.js +216 -0
- package/output/core/classes/expression/trig.d.ts +25 -0
- package/output/core/classes/expression/trig.js +40 -0
- package/output/core/classes/expression/utils.d.ts +52 -0
- package/output/core/classes/expression/utils.js +189 -0
- package/output/core/classes/lookupTable/LookupTable.d.ts +12 -0
- package/output/core/classes/lookupTable/LookupTable.js +55 -0
- package/output/core/classes/matrix/Matrix.d.ts +227 -0
- package/output/core/classes/matrix/Matrix.js +889 -0
- package/output/core/classes/matrix/Sylvester.d.ts +11 -0
- package/output/core/classes/matrix/Sylvester.js +54 -0
- package/output/core/classes/matrix/functions.d.ts +26 -0
- package/output/core/classes/matrix/functions.js +52 -0
- package/output/core/classes/matrix/utils.d.ts +9 -0
- package/output/core/classes/matrix/utils.js +22 -0
- package/output/core/classes/parser/Parser.d.ts +480 -0
- package/output/core/classes/parser/Parser.js +1812 -0
- package/output/core/classes/parser/Token.d.ts +58 -0
- package/output/core/classes/parser/Token.js +137 -0
- package/output/core/classes/parser/constants.d.ts +160 -0
- package/output/core/classes/parser/constants.js +227 -0
- package/output/core/classes/parser/helpers.d.ts +21 -0
- package/output/core/classes/parser/helpers.js +42 -0
- package/output/core/classes/parser/operations/add.d.ts +15 -0
- package/output/core/classes/parser/operations/add.js +238 -0
- package/output/core/classes/parser/operations/comma.d.ts +7 -0
- package/output/core/classes/parser/operations/comma.js +11 -0
- package/output/core/classes/parser/operations/compare.d.ts +21 -0
- package/output/core/classes/parser/operations/compare.js +461 -0
- package/output/core/classes/parser/operations/divide.d.ts +2 -0
- package/output/core/classes/parser/operations/divide.js +72 -0
- package/output/core/classes/parser/operations/functions.d.ts +46 -0
- package/output/core/classes/parser/operations/functions.js +430 -0
- package/output/core/classes/parser/operations/multiply.d.ts +11 -0
- package/output/core/classes/parser/operations/multiply.js +321 -0
- package/output/core/classes/parser/operations/power.d.ts +48 -0
- package/output/core/classes/parser/operations/power.js +673 -0
- package/output/core/classes/parser/operations/subtract.d.ts +3 -0
- package/output/core/classes/parser/operations/subtract.js +35 -0
- package/output/core/classes/parser/preprocess.d.ts +14 -0
- package/output/core/classes/parser/preprocess.js +259 -0
- package/output/core/classes/parser/scripting/controlFlow.d.ts +121 -0
- package/output/core/classes/parser/scripting/controlFlow.js +355 -0
- package/output/core/classes/parser/scripting/evaluate.d.ts +10 -0
- package/output/core/classes/parser/scripting/evaluate.js +112 -0
- package/output/core/classes/parser/scripting/functions.d.ts +14 -0
- package/output/core/classes/parser/scripting/functions.js +59 -0
- package/output/core/classes/parser/scripting/scope.d.ts +35 -0
- package/output/core/classes/parser/scripting/scope.js +155 -0
- package/output/core/classes/parser/types.d.ts +125 -0
- package/output/core/classes/parser/types.js +2 -0
- package/output/core/classes/parser/wrappers/IndexedReference.d.ts +31 -0
- package/output/core/classes/parser/wrappers/IndexedReference.js +68 -0
- package/output/core/classes/parser/wrappers/KeyValuePair.d.ts +24 -0
- package/output/core/classes/parser/wrappers/KeyValuePair.js +51 -0
- package/output/core/classes/polynomial/Polynomial.d.ts +500 -0
- package/output/core/classes/polynomial/Polynomial.js +1149 -0
- package/output/core/classes/polynomial/Term.d.ts +222 -0
- package/output/core/classes/polynomial/Term.js +430 -0
- package/output/core/classes/polynomial/functions.d.ts +69 -0
- package/output/core/classes/polynomial/functions.js +126 -0
- package/output/core/classes/polynomial/utils.d.ts +62 -0
- package/output/core/classes/polynomial/utils.js +206 -0
- package/output/core/classes/rational/Rational.d.ts +504 -0
- package/output/core/classes/rational/Rational.js +779 -0
- package/output/core/classes/seq/SEQ.d.ts +13 -0
- package/output/core/classes/seq/SEQ.js +137 -0
- package/output/core/classes/valuesSet/ValuesSet.d.ts +179 -0
- package/output/core/classes/valuesSet/ValuesSet.js +381 -0
- package/output/core/classes/vector/Vector.d.ts +222 -0
- package/output/core/classes/vector/Vector.js +497 -0
- package/output/core/classes/vector/functions.d.ts +28 -0
- package/output/core/classes/vector/functions.js +47 -0
- package/output/core/common/classes/MathematicalAggregate.d.ts +53 -0
- package/output/core/common/classes/MathematicalAggregate.js +140 -0
- package/output/core/common/classes/Scope.d.ts +62 -0
- package/output/core/common/classes/Scope.js +122 -0
- package/output/core/common/classes/StructuredEntity.d.ts +55 -0
- package/output/core/common/classes/StructuredEntity.js +151 -0
- package/output/core/common/common.d.ts +63 -0
- package/output/core/common/common.js +279 -0
- package/output/core/common/functions/functions.d.ts +14 -0
- package/output/core/common/functions/functions.js +33 -0
- package/output/core/common/functions/structuredEntityUtils.d.ts +27 -0
- package/output/core/common/functions/structuredEntityUtils.js +40 -0
- package/output/core/converters/BaseConverter.d.ts +97 -0
- package/output/core/converters/BaseConverter.js +405 -0
- package/output/core/converters/Converter.d.ts +111 -0
- package/output/core/converters/Converter.js +802 -0
- package/output/core/converters/Pattern.d.ts +71 -0
- package/output/core/converters/Pattern.js +302 -0
- package/output/core/dispatch.d.ts +34 -0
- package/output/core/dispatch.js +304 -0
- package/output/core/errors.d.ts +531 -0
- package/output/core/errors.js +621 -0
- package/output/core/functions/bigint/bigint.d.ts +121 -0
- package/output/core/functions/bigint/bigint.js +392 -0
- package/output/core/functions/bigint/primeFactor.d.ts +49 -0
- package/output/core/functions/bigint/primeFactor.js +267 -0
- package/output/core/functions/bigint/primes.d.ts +1 -0
- package/output/core/functions/bigint/primes.js +11 -0
- package/output/core/functions/build/definitions.d.ts +12 -0
- package/output/core/functions/build/definitions.js +133 -0
- package/output/core/functions/build/index.d.ts +32 -0
- package/output/core/functions/build/index.js +136 -0
- package/output/core/functions/complex.d.ts +90 -0
- package/output/core/functions/complex.js +482 -0
- package/output/core/functions/decimal.d.ts +24 -0
- package/output/core/functions/decimal.js +664 -0
- package/output/core/functions/expand/expand.d.ts +42 -0
- package/output/core/functions/expand/expand.js +376 -0
- package/output/core/functions/fresnelNumeric.d.ts +12 -0
- package/output/core/functions/fresnelNumeric.js +123 -0
- package/output/core/functions/numeric.d.ts +140 -0
- package/output/core/functions/numeric.js +790 -0
- package/output/core/functions/rationalNormalization.d.ts +11 -0
- package/output/core/functions/rationalNormalization.js +117 -0
- package/output/core/functions/setFunction.d.ts +19 -0
- package/output/core/functions/setFunction.js +75 -0
- package/output/core/functions/string.d.ts +26 -0
- package/output/core/functions/string.js +101 -0
- package/output/core/functions/subst.d.ts +90 -0
- package/output/core/functions/subst.js +498 -0
- package/output/core/functions/utils.d.ts +24 -0
- package/output/core/functions/utils.js +51 -0
- package/output/core/types.d.ts +48 -0
- package/output/core/types.js +2 -0
- package/output/index.d.ts +339 -0
- package/output/index.js +715 -0
- package/output/math/defint/defintDecimal.d.ts +37 -0
- package/output/math/defint/defintDecimal.js +320 -0
- package/output/math/defint/defintNative.d.ts +57 -0
- package/output/math/defint/defintNative.js +292 -0
- package/output/math/geometry.d.ts +8 -0
- package/output/math/geometry.js +32 -0
- package/output/math/math.d.ts +655 -0
- package/output/math/math.js +1811 -0
- package/output/math/trig.d.ts +518 -0
- package/output/math/trig.js +1444 -0
- package/output/math/trunc.d.ts +19 -0
- package/output/math/trunc.js +36 -0
- package/output/math/utils.d.ts +60 -0
- package/output/math/utils.js +180 -0
- package/output/solve/classes/DecimalMatrix.d.ts +17 -0
- package/output/solve/classes/DecimalMatrix.js +86 -0
- package/output/solve/classes/FunctionSolver.d.ts +135 -0
- package/output/solve/classes/FunctionSolver.js +433 -0
- package/output/solve/classes/MultivariateSolver.d.ts +84 -0
- package/output/solve/classes/MultivariateSolver.js +240 -0
- package/output/solve/classes/PolynomialSolver.d.ts +85 -0
- package/output/solve/classes/PolynomialSolver.js +292 -0
- package/output/solve/classes/SolutionSet.d.ts +153 -0
- package/output/solve/classes/SolutionSet.js +357 -0
- package/output/solve/classes/Solver.d.ts +17 -0
- package/output/solve/classes/Solver.js +132 -0
- package/output/solve/classes/SymbolicSolver.d.ts +74 -0
- package/output/solve/classes/SymbolicSolver.js +601 -0
- package/output/solve/linsolve.d.ts +51 -0
- package/output/solve/linsolve.js +225 -0
- package/output/solve/solve.d.ts +34 -0
- package/output/solve/solve.js +260 -0
- package/output/solve/solveSystem.d.ts +31 -0
- package/output/solve/solveSystem.js +290 -0
- package/output/solve/utils.d.ts +9 -0
- package/output/solve/utils.js +62 -0
- package/output/utils/array.d.ts +42 -0
- package/output/utils/array.js +98 -0
- package/output/utils/debug.d.ts +131 -0
- package/output/utils/debug.js +295 -0
- package/output/utils/decimal.d.ts +3 -0
- package/output/utils/decimal.js +16 -0
- package/output/utils/numeric.d.ts +14 -0
- package/output/utils/numeric.js +51 -0
- package/output/utils/object.d.ts +26 -0
- package/output/utils/object.js +56 -0
- package/package.json +213 -57
- package/.travis.yml +0 -3
- package/Algebra.js +0 -4568
- package/BREAKING_CHANGES.md +0 -5
- package/CODE_OF_CONDUCT.md +0 -46
- package/CONTRIBUTING.md +0 -14
- package/Calculus.js +0 -2675
- package/Extra.js +0 -622
- package/Solve.js +0 -1783
- package/all.js +0 -16
- package/all.min.js +0 -1
- package/gulpfile.js +0 -16
- package/index.html +0 -158
- package/license.txt +0 -19
- package/nerdamer.core.js +0 -12510
- package/spec/LaTeX.spec.js +0 -302
- package/spec/TeXConvert.spec.js +0 -8
- package/spec/algebra.spec.js +0 -287
- package/spec/basic_parser.spec.js +0 -134
- package/spec/build.spec.js +0 -131
- package/spec/calculus.spec.js +0 -183
- package/spec/core.spec.js +0 -2970
- package/spec/extra.spec.js +0 -54
- package/spec/solve.spec.js +0 -126
- package/spec/support/jasmine.json +0 -11
- package/spec/support/utils.js +0 -42
- package/spec/text.spec.js +0 -132
|
@@ -0,0 +1,1960 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 2,
|
|
3
|
+
"packageVersion": "2.0.0-rc.1",
|
|
4
|
+
"functions": [
|
|
5
|
+
{
|
|
6
|
+
"name": "C",
|
|
7
|
+
"category": "Calculus",
|
|
8
|
+
"usage": "notation",
|
|
9
|
+
"minArgs": 1,
|
|
10
|
+
"maxArgs": 1,
|
|
11
|
+
"equationArgs": [],
|
|
12
|
+
"distElWise": true,
|
|
13
|
+
"deferArguments": false,
|
|
14
|
+
"registrationLevel": "system",
|
|
15
|
+
"syntax": "C(x)",
|
|
16
|
+
"summary": "Computes the normalized Fresnel cosine integral.",
|
|
17
|
+
"parameters": [
|
|
18
|
+
{
|
|
19
|
+
"name": "x",
|
|
20
|
+
"description": "Upper integration limit."
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"examples": [
|
|
24
|
+
{
|
|
25
|
+
"input": "nerdamer('C(x)').text()",
|
|
26
|
+
"output": "C(x)"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"directApi": {
|
|
30
|
+
"package": "nerdamer/calculus",
|
|
31
|
+
"name": "C"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "Chi",
|
|
36
|
+
"category": "Special functions",
|
|
37
|
+
"usage": "notation",
|
|
38
|
+
"minArgs": 1,
|
|
39
|
+
"maxArgs": 1,
|
|
40
|
+
"equationArgs": [],
|
|
41
|
+
"distElWise": true,
|
|
42
|
+
"deferArguments": false,
|
|
43
|
+
"registrationLevel": "system",
|
|
44
|
+
"syntax": "Chi(arg1)"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "Ci",
|
|
48
|
+
"category": "Special functions",
|
|
49
|
+
"usage": "notation",
|
|
50
|
+
"minArgs": 1,
|
|
51
|
+
"maxArgs": 1,
|
|
52
|
+
"equationArgs": [],
|
|
53
|
+
"distElWise": true,
|
|
54
|
+
"deferArguments": false,
|
|
55
|
+
"registrationLevel": "system",
|
|
56
|
+
"syntax": "Ci(arg1)"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "Ei",
|
|
60
|
+
"category": "Special functions",
|
|
61
|
+
"usage": "notation",
|
|
62
|
+
"minArgs": 1,
|
|
63
|
+
"maxArgs": 1,
|
|
64
|
+
"equationArgs": [],
|
|
65
|
+
"distElWise": true,
|
|
66
|
+
"deferArguments": false,
|
|
67
|
+
"registrationLevel": "system",
|
|
68
|
+
"syntax": "Ei(arg1)"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "Li",
|
|
72
|
+
"category": "Special functions",
|
|
73
|
+
"usage": "notation",
|
|
74
|
+
"minArgs": 1,
|
|
75
|
+
"maxArgs": 1,
|
|
76
|
+
"equationArgs": [],
|
|
77
|
+
"distElWise": true,
|
|
78
|
+
"deferArguments": false,
|
|
79
|
+
"registrationLevel": "system",
|
|
80
|
+
"syntax": "Li(arg1)"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "S",
|
|
84
|
+
"category": "Calculus",
|
|
85
|
+
"usage": "notation",
|
|
86
|
+
"minArgs": 1,
|
|
87
|
+
"maxArgs": 1,
|
|
88
|
+
"equationArgs": [],
|
|
89
|
+
"distElWise": true,
|
|
90
|
+
"deferArguments": false,
|
|
91
|
+
"registrationLevel": "system",
|
|
92
|
+
"syntax": "S(x)",
|
|
93
|
+
"summary": "Computes the normalized Fresnel sine integral.",
|
|
94
|
+
"parameters": [
|
|
95
|
+
{
|
|
96
|
+
"name": "x",
|
|
97
|
+
"description": "Upper integration limit."
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
"examples": [
|
|
101
|
+
{
|
|
102
|
+
"input": "nerdamer('S(x)').text()",
|
|
103
|
+
"output": "S(x)"
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"directApi": {
|
|
107
|
+
"package": "nerdamer/calculus",
|
|
108
|
+
"name": "S"
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "Shi",
|
|
113
|
+
"category": "Special functions",
|
|
114
|
+
"usage": "notation",
|
|
115
|
+
"minArgs": 1,
|
|
116
|
+
"maxArgs": 1,
|
|
117
|
+
"equationArgs": [],
|
|
118
|
+
"distElWise": true,
|
|
119
|
+
"deferArguments": false,
|
|
120
|
+
"registrationLevel": "system",
|
|
121
|
+
"syntax": "Shi(arg1)"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "Si",
|
|
125
|
+
"category": "Special functions",
|
|
126
|
+
"usage": "notation",
|
|
127
|
+
"minArgs": 1,
|
|
128
|
+
"maxArgs": 1,
|
|
129
|
+
"equationArgs": [],
|
|
130
|
+
"distElWise": true,
|
|
131
|
+
"deferArguments": false,
|
|
132
|
+
"registrationLevel": "system",
|
|
133
|
+
"syntax": "Si(arg1)"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "abs",
|
|
137
|
+
"category": "Math",
|
|
138
|
+
"usage": "notation",
|
|
139
|
+
"minArgs": 1,
|
|
140
|
+
"maxArgs": 1,
|
|
141
|
+
"equationArgs": [],
|
|
142
|
+
"distElWise": true,
|
|
143
|
+
"deferArguments": false,
|
|
144
|
+
"registrationLevel": "system",
|
|
145
|
+
"syntax": "abs(arg1)"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "acos",
|
|
149
|
+
"category": "Trigonometry",
|
|
150
|
+
"usage": "notation",
|
|
151
|
+
"minArgs": 1,
|
|
152
|
+
"maxArgs": 1,
|
|
153
|
+
"equationArgs": [],
|
|
154
|
+
"distElWise": true,
|
|
155
|
+
"deferArguments": false,
|
|
156
|
+
"registrationLevel": "system",
|
|
157
|
+
"syntax": "acos(arg1)"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "acosh",
|
|
161
|
+
"category": "Trigonometry",
|
|
162
|
+
"usage": "notation",
|
|
163
|
+
"minArgs": 1,
|
|
164
|
+
"maxArgs": 1,
|
|
165
|
+
"equationArgs": [],
|
|
166
|
+
"distElWise": true,
|
|
167
|
+
"deferArguments": false,
|
|
168
|
+
"registrationLevel": "system",
|
|
169
|
+
"syntax": "acosh(arg1)"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "acot",
|
|
173
|
+
"category": "Trigonometry",
|
|
174
|
+
"usage": "notation",
|
|
175
|
+
"minArgs": 1,
|
|
176
|
+
"maxArgs": 1,
|
|
177
|
+
"equationArgs": [],
|
|
178
|
+
"distElWise": true,
|
|
179
|
+
"deferArguments": false,
|
|
180
|
+
"registrationLevel": "system",
|
|
181
|
+
"syntax": "acot(arg1)"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "acoth",
|
|
185
|
+
"category": "Trigonometry",
|
|
186
|
+
"usage": "notation",
|
|
187
|
+
"minArgs": 1,
|
|
188
|
+
"maxArgs": 1,
|
|
189
|
+
"equationArgs": [],
|
|
190
|
+
"distElWise": true,
|
|
191
|
+
"deferArguments": false,
|
|
192
|
+
"registrationLevel": "system",
|
|
193
|
+
"syntax": "acoth(arg1)"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"name": "acsc",
|
|
197
|
+
"category": "Trigonometry",
|
|
198
|
+
"usage": "notation",
|
|
199
|
+
"minArgs": 1,
|
|
200
|
+
"maxArgs": 1,
|
|
201
|
+
"equationArgs": [],
|
|
202
|
+
"distElWise": true,
|
|
203
|
+
"deferArguments": false,
|
|
204
|
+
"registrationLevel": "system",
|
|
205
|
+
"syntax": "acsc(arg1)"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "acsch",
|
|
209
|
+
"category": "Trigonometry",
|
|
210
|
+
"usage": "notation",
|
|
211
|
+
"minArgs": 1,
|
|
212
|
+
"maxArgs": 1,
|
|
213
|
+
"equationArgs": [],
|
|
214
|
+
"distElWise": true,
|
|
215
|
+
"deferArguments": false,
|
|
216
|
+
"registrationLevel": "system",
|
|
217
|
+
"syntax": "acsch(arg1)"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"name": "and",
|
|
221
|
+
"category": "Nerdamer Language",
|
|
222
|
+
"usage": "scripting",
|
|
223
|
+
"minArgs": 2,
|
|
224
|
+
"maxArgs": -1,
|
|
225
|
+
"equationArgs": [],
|
|
226
|
+
"distElWise": false,
|
|
227
|
+
"deferArguments": true,
|
|
228
|
+
"registrationLevel": "system",
|
|
229
|
+
"syntax": "and(arg1, arg2, ...)"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "arg",
|
|
233
|
+
"category": "Complex",
|
|
234
|
+
"usage": "notation",
|
|
235
|
+
"minArgs": 1,
|
|
236
|
+
"maxArgs": 1,
|
|
237
|
+
"equationArgs": [],
|
|
238
|
+
"distElWise": true,
|
|
239
|
+
"deferArguments": false,
|
|
240
|
+
"registrationLevel": "system",
|
|
241
|
+
"syntax": "arg(arg1)"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "asec",
|
|
245
|
+
"category": "Trigonometry",
|
|
246
|
+
"usage": "notation",
|
|
247
|
+
"minArgs": 1,
|
|
248
|
+
"maxArgs": 1,
|
|
249
|
+
"equationArgs": [],
|
|
250
|
+
"distElWise": true,
|
|
251
|
+
"deferArguments": false,
|
|
252
|
+
"registrationLevel": "system",
|
|
253
|
+
"syntax": "asec(arg1)"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"name": "asech",
|
|
257
|
+
"category": "Trigonometry",
|
|
258
|
+
"usage": "notation",
|
|
259
|
+
"minArgs": 1,
|
|
260
|
+
"maxArgs": 1,
|
|
261
|
+
"equationArgs": [],
|
|
262
|
+
"distElWise": true,
|
|
263
|
+
"deferArguments": false,
|
|
264
|
+
"registrationLevel": "system",
|
|
265
|
+
"syntax": "asech(arg1)"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "asin",
|
|
269
|
+
"category": "Trigonometry",
|
|
270
|
+
"usage": "notation",
|
|
271
|
+
"minArgs": 1,
|
|
272
|
+
"maxArgs": 1,
|
|
273
|
+
"equationArgs": [],
|
|
274
|
+
"distElWise": true,
|
|
275
|
+
"deferArguments": false,
|
|
276
|
+
"registrationLevel": "system",
|
|
277
|
+
"syntax": "asin(arg1)"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"name": "asinh",
|
|
281
|
+
"category": "Trigonometry",
|
|
282
|
+
"usage": "notation",
|
|
283
|
+
"minArgs": 1,
|
|
284
|
+
"maxArgs": 1,
|
|
285
|
+
"equationArgs": [],
|
|
286
|
+
"distElWise": true,
|
|
287
|
+
"deferArguments": false,
|
|
288
|
+
"registrationLevel": "system",
|
|
289
|
+
"syntax": "asinh(arg1)"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "assume",
|
|
293
|
+
"category": "Assumptions and sets",
|
|
294
|
+
"usage": "notation",
|
|
295
|
+
"minArgs": 1,
|
|
296
|
+
"maxArgs": 1,
|
|
297
|
+
"equationArgs": [],
|
|
298
|
+
"distElWise": false,
|
|
299
|
+
"deferArguments": false,
|
|
300
|
+
"registrationLevel": "system",
|
|
301
|
+
"syntax": "assume(arg1)",
|
|
302
|
+
"directApi": {
|
|
303
|
+
"package": "nerdamer/assumptions",
|
|
304
|
+
"name": "assume"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "atan",
|
|
309
|
+
"category": "Trigonometry",
|
|
310
|
+
"usage": "notation",
|
|
311
|
+
"minArgs": 1,
|
|
312
|
+
"maxArgs": 1,
|
|
313
|
+
"equationArgs": [],
|
|
314
|
+
"distElWise": true,
|
|
315
|
+
"deferArguments": false,
|
|
316
|
+
"registrationLevel": "system",
|
|
317
|
+
"syntax": "atan(arg1)"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "atan2",
|
|
321
|
+
"category": "Trigonometry",
|
|
322
|
+
"usage": "notation",
|
|
323
|
+
"minArgs": 2,
|
|
324
|
+
"maxArgs": 2,
|
|
325
|
+
"equationArgs": [],
|
|
326
|
+
"distElWise": true,
|
|
327
|
+
"deferArguments": false,
|
|
328
|
+
"registrationLevel": "system",
|
|
329
|
+
"syntax": "atan2(arg1, arg2)"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"name": "atanh",
|
|
333
|
+
"category": "Trigonometry",
|
|
334
|
+
"usage": "notation",
|
|
335
|
+
"minArgs": 1,
|
|
336
|
+
"maxArgs": 1,
|
|
337
|
+
"equationArgs": [],
|
|
338
|
+
"distElWise": true,
|
|
339
|
+
"deferArguments": false,
|
|
340
|
+
"registrationLevel": "system",
|
|
341
|
+
"syntax": "atanh(arg1)"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "augment",
|
|
345
|
+
"category": "Linear algebra",
|
|
346
|
+
"usage": "notation",
|
|
347
|
+
"minArgs": 2,
|
|
348
|
+
"maxArgs": 2,
|
|
349
|
+
"equationArgs": [],
|
|
350
|
+
"distElWise": false,
|
|
351
|
+
"deferArguments": false,
|
|
352
|
+
"registrationLevel": "system",
|
|
353
|
+
"syntax": "augment(left, right)",
|
|
354
|
+
"summary": "Horizontally joins two matrices with the same number of rows.",
|
|
355
|
+
"parameters": [
|
|
356
|
+
{
|
|
357
|
+
"name": "left",
|
|
358
|
+
"description": "Matrix placed on the left."
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"name": "right",
|
|
362
|
+
"description": "Matrix appended on the right."
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
"examples": [
|
|
366
|
+
{
|
|
367
|
+
"input": "nerdamer('augment(matrix([1,2],[3,4]),matrix([5],[6]))').text()",
|
|
368
|
+
"output": "matrix([1, 2, 5], [3, 4, 6])"
|
|
369
|
+
}
|
|
370
|
+
]
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"name": "block",
|
|
374
|
+
"category": "Nerdamer Language",
|
|
375
|
+
"usage": "scripting",
|
|
376
|
+
"minArgs": -1,
|
|
377
|
+
"maxArgs": -1,
|
|
378
|
+
"equationArgs": [],
|
|
379
|
+
"distElWise": false,
|
|
380
|
+
"deferArguments": true,
|
|
381
|
+
"registrationLevel": "system",
|
|
382
|
+
"syntax": "block(...)",
|
|
383
|
+
"summary": "Evaluates a sequence of Nerdamer Language expressions as a block.",
|
|
384
|
+
"parameters": [
|
|
385
|
+
{
|
|
386
|
+
"name": "expression",
|
|
387
|
+
"description": "One or more deferred expressions evaluated in sequence."
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"examples": [
|
|
391
|
+
{
|
|
392
|
+
"input": "nerdamer('block(return(7),9)').text()",
|
|
393
|
+
"output": "7"
|
|
394
|
+
}
|
|
395
|
+
]
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"name": "break",
|
|
399
|
+
"category": "Nerdamer Language",
|
|
400
|
+
"usage": "scripting",
|
|
401
|
+
"minArgs": 0,
|
|
402
|
+
"maxArgs": 0,
|
|
403
|
+
"equationArgs": [],
|
|
404
|
+
"distElWise": false,
|
|
405
|
+
"deferArguments": false,
|
|
406
|
+
"registrationLevel": "system",
|
|
407
|
+
"syntax": "break()"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"name": "cbrt",
|
|
411
|
+
"category": "Math",
|
|
412
|
+
"usage": "notation",
|
|
413
|
+
"minArgs": 1,
|
|
414
|
+
"maxArgs": 1,
|
|
415
|
+
"equationArgs": [],
|
|
416
|
+
"distElWise": true,
|
|
417
|
+
"deferArguments": false,
|
|
418
|
+
"registrationLevel": "system",
|
|
419
|
+
"syntax": "cbrt(arg1)"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"name": "ceil",
|
|
423
|
+
"category": "Math",
|
|
424
|
+
"usage": "notation",
|
|
425
|
+
"minArgs": 1,
|
|
426
|
+
"maxArgs": 1,
|
|
427
|
+
"equationArgs": [],
|
|
428
|
+
"distElWise": true,
|
|
429
|
+
"deferArguments": false,
|
|
430
|
+
"registrationLevel": "system",
|
|
431
|
+
"syntax": "ceil(arg1)",
|
|
432
|
+
"aliases": [
|
|
433
|
+
"ceiling"
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"name": "ceiling",
|
|
438
|
+
"category": "Math",
|
|
439
|
+
"usage": "notation",
|
|
440
|
+
"minArgs": 1,
|
|
441
|
+
"maxArgs": 1,
|
|
442
|
+
"equationArgs": [],
|
|
443
|
+
"distElWise": true,
|
|
444
|
+
"deferArguments": false,
|
|
445
|
+
"registrationLevel": "system",
|
|
446
|
+
"syntax": "ceiling(arg1)",
|
|
447
|
+
"canonicalName": "ceil"
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"name": "conjugate",
|
|
451
|
+
"category": "Complex",
|
|
452
|
+
"usage": "notation",
|
|
453
|
+
"minArgs": 1,
|
|
454
|
+
"maxArgs": 1,
|
|
455
|
+
"equationArgs": [],
|
|
456
|
+
"distElWise": true,
|
|
457
|
+
"deferArguments": false,
|
|
458
|
+
"registrationLevel": "system",
|
|
459
|
+
"syntax": "conjugate(arg1)"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "contains",
|
|
463
|
+
"category": "Math",
|
|
464
|
+
"usage": "notation",
|
|
465
|
+
"minArgs": 2,
|
|
466
|
+
"maxArgs": 2,
|
|
467
|
+
"equationArgs": [],
|
|
468
|
+
"distElWise": false,
|
|
469
|
+
"deferArguments": false,
|
|
470
|
+
"registrationLevel": "system",
|
|
471
|
+
"syntax": "contains(arg1, arg2)"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"name": "content",
|
|
475
|
+
"category": "Polynomials",
|
|
476
|
+
"usage": "notation",
|
|
477
|
+
"minArgs": 1,
|
|
478
|
+
"maxArgs": 1,
|
|
479
|
+
"equationArgs": [],
|
|
480
|
+
"distElWise": true,
|
|
481
|
+
"deferArguments": false,
|
|
482
|
+
"registrationLevel": "system",
|
|
483
|
+
"syntax": "content(arg1)",
|
|
484
|
+
"directApi": {
|
|
485
|
+
"package": "nerdamer/algebra",
|
|
486
|
+
"name": "content"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"name": "continue",
|
|
491
|
+
"category": "Nerdamer Language",
|
|
492
|
+
"usage": "scripting",
|
|
493
|
+
"minArgs": 0,
|
|
494
|
+
"maxArgs": 0,
|
|
495
|
+
"equationArgs": [],
|
|
496
|
+
"distElWise": false,
|
|
497
|
+
"deferArguments": false,
|
|
498
|
+
"registrationLevel": "system",
|
|
499
|
+
"syntax": "continue()"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"name": "cos",
|
|
503
|
+
"category": "Trigonometry",
|
|
504
|
+
"usage": "notation",
|
|
505
|
+
"minArgs": 1,
|
|
506
|
+
"maxArgs": 1,
|
|
507
|
+
"equationArgs": [],
|
|
508
|
+
"distElWise": true,
|
|
509
|
+
"deferArguments": false,
|
|
510
|
+
"registrationLevel": "system",
|
|
511
|
+
"syntax": "cos(arg1)"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"name": "cosh",
|
|
515
|
+
"category": "Trigonometry",
|
|
516
|
+
"usage": "notation",
|
|
517
|
+
"minArgs": 1,
|
|
518
|
+
"maxArgs": 1,
|
|
519
|
+
"equationArgs": [],
|
|
520
|
+
"distElWise": true,
|
|
521
|
+
"deferArguments": false,
|
|
522
|
+
"registrationLevel": "system",
|
|
523
|
+
"syntax": "cosh(arg1)"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"name": "cot",
|
|
527
|
+
"category": "Trigonometry",
|
|
528
|
+
"usage": "notation",
|
|
529
|
+
"minArgs": 1,
|
|
530
|
+
"maxArgs": 1,
|
|
531
|
+
"equationArgs": [],
|
|
532
|
+
"distElWise": true,
|
|
533
|
+
"deferArguments": false,
|
|
534
|
+
"registrationLevel": "system",
|
|
535
|
+
"syntax": "cot(arg1)"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"name": "coth",
|
|
539
|
+
"category": "Trigonometry",
|
|
540
|
+
"usage": "notation",
|
|
541
|
+
"minArgs": 1,
|
|
542
|
+
"maxArgs": 1,
|
|
543
|
+
"equationArgs": [],
|
|
544
|
+
"distElWise": true,
|
|
545
|
+
"deferArguments": false,
|
|
546
|
+
"registrationLevel": "system",
|
|
547
|
+
"syntax": "coth(arg1)"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"name": "count",
|
|
551
|
+
"category": "Math",
|
|
552
|
+
"usage": "notation",
|
|
553
|
+
"minArgs": 1,
|
|
554
|
+
"maxArgs": 1,
|
|
555
|
+
"equationArgs": [],
|
|
556
|
+
"distElWise": false,
|
|
557
|
+
"deferArguments": false,
|
|
558
|
+
"registrationLevel": "system",
|
|
559
|
+
"syntax": "count(arg1)"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"name": "cross",
|
|
563
|
+
"category": "Linear algebra",
|
|
564
|
+
"usage": "notation",
|
|
565
|
+
"minArgs": 2,
|
|
566
|
+
"maxArgs": 2,
|
|
567
|
+
"equationArgs": [],
|
|
568
|
+
"distElWise": false,
|
|
569
|
+
"deferArguments": false,
|
|
570
|
+
"registrationLevel": "system",
|
|
571
|
+
"syntax": "cross(arg1, arg2)",
|
|
572
|
+
"directApi": {
|
|
573
|
+
"package": "nerdamer/structures",
|
|
574
|
+
"name": "cross"
|
|
575
|
+
}
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"name": "csc",
|
|
579
|
+
"category": "Trigonometry",
|
|
580
|
+
"usage": "notation",
|
|
581
|
+
"minArgs": 1,
|
|
582
|
+
"maxArgs": 1,
|
|
583
|
+
"equationArgs": [],
|
|
584
|
+
"distElWise": true,
|
|
585
|
+
"deferArguments": false,
|
|
586
|
+
"registrationLevel": "system",
|
|
587
|
+
"syntax": "csc(arg1)"
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"name": "csch",
|
|
591
|
+
"category": "Trigonometry",
|
|
592
|
+
"usage": "notation",
|
|
593
|
+
"minArgs": 1,
|
|
594
|
+
"maxArgs": 1,
|
|
595
|
+
"equationArgs": [],
|
|
596
|
+
"distElWise": true,
|
|
597
|
+
"deferArguments": false,
|
|
598
|
+
"registrationLevel": "system",
|
|
599
|
+
"syntax": "csch(arg1)"
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"name": "csgn",
|
|
603
|
+
"category": "Complex",
|
|
604
|
+
"usage": "notation",
|
|
605
|
+
"minArgs": 1,
|
|
606
|
+
"maxArgs": 1,
|
|
607
|
+
"equationArgs": [],
|
|
608
|
+
"distElWise": true,
|
|
609
|
+
"deferArguments": false,
|
|
610
|
+
"registrationLevel": "system",
|
|
611
|
+
"syntax": "csgn(arg1)"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"name": "defint",
|
|
615
|
+
"category": "Calculus",
|
|
616
|
+
"usage": "notation",
|
|
617
|
+
"minArgs": 4,
|
|
618
|
+
"maxArgs": 4,
|
|
619
|
+
"equationArgs": [],
|
|
620
|
+
"distElWise": true,
|
|
621
|
+
"deferArguments": false,
|
|
622
|
+
"registrationLevel": "system",
|
|
623
|
+
"syntax": "defint(arg1, arg2, arg3, arg4)",
|
|
624
|
+
"directApi": {
|
|
625
|
+
"package": "nerdamer/calculus",
|
|
626
|
+
"name": "defint"
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"name": "deg",
|
|
631
|
+
"category": "Polynomials",
|
|
632
|
+
"usage": "notation",
|
|
633
|
+
"minArgs": 1,
|
|
634
|
+
"maxArgs": 2,
|
|
635
|
+
"equationArgs": [],
|
|
636
|
+
"distElWise": true,
|
|
637
|
+
"deferArguments": false,
|
|
638
|
+
"registrationLevel": "system",
|
|
639
|
+
"syntax": "deg(arg1, [arg2])",
|
|
640
|
+
"directApi": {
|
|
641
|
+
"package": "nerdamer/algebra",
|
|
642
|
+
"name": "deg"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"name": "delta",
|
|
647
|
+
"category": "Math",
|
|
648
|
+
"usage": "notation",
|
|
649
|
+
"minArgs": 1,
|
|
650
|
+
"maxArgs": 1,
|
|
651
|
+
"equationArgs": [],
|
|
652
|
+
"distElWise": true,
|
|
653
|
+
"deferArguments": false,
|
|
654
|
+
"registrationLevel": "system",
|
|
655
|
+
"syntax": "delta(arg1)"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "determinant",
|
|
659
|
+
"category": "Linear algebra",
|
|
660
|
+
"usage": "notation",
|
|
661
|
+
"minArgs": 1,
|
|
662
|
+
"maxArgs": 1,
|
|
663
|
+
"equationArgs": [],
|
|
664
|
+
"distElWise": false,
|
|
665
|
+
"deferArguments": false,
|
|
666
|
+
"registrationLevel": "system",
|
|
667
|
+
"syntax": "determinant(arg1)",
|
|
668
|
+
"directApi": {
|
|
669
|
+
"package": "nerdamer/structures",
|
|
670
|
+
"name": "determinant"
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"name": "dfact",
|
|
675
|
+
"category": "Math",
|
|
676
|
+
"usage": "notation",
|
|
677
|
+
"minArgs": 1,
|
|
678
|
+
"maxArgs": 1,
|
|
679
|
+
"equationArgs": [],
|
|
680
|
+
"distElWise": true,
|
|
681
|
+
"deferArguments": false,
|
|
682
|
+
"registrationLevel": "system",
|
|
683
|
+
"syntax": "dfact(arg1)"
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"name": "diff",
|
|
687
|
+
"category": "Calculus",
|
|
688
|
+
"usage": "notation",
|
|
689
|
+
"minArgs": 1,
|
|
690
|
+
"maxArgs": 3,
|
|
691
|
+
"equationArgs": [
|
|
692
|
+
0
|
|
693
|
+
],
|
|
694
|
+
"distElWise": true,
|
|
695
|
+
"deferArguments": false,
|
|
696
|
+
"registrationLevel": "system",
|
|
697
|
+
"syntax": "diff(expression[, variable][, order])",
|
|
698
|
+
"summary": "Differentiates an expression symbolically.",
|
|
699
|
+
"parameters": [
|
|
700
|
+
{
|
|
701
|
+
"name": "expression",
|
|
702
|
+
"description": "Expression to differentiate."
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"name": "variable",
|
|
706
|
+
"description": "Variable to differentiate with respect to."
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"name": "order",
|
|
710
|
+
"description": "Optional derivative order."
|
|
711
|
+
}
|
|
712
|
+
],
|
|
713
|
+
"examples": [
|
|
714
|
+
{
|
|
715
|
+
"input": "nerdamer('diff(x^3,x)').text()",
|
|
716
|
+
"output": "3*x^2"
|
|
717
|
+
}
|
|
718
|
+
],
|
|
719
|
+
"directApi": {
|
|
720
|
+
"package": "nerdamer/calculus",
|
|
721
|
+
"name": "diff"
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "div",
|
|
726
|
+
"category": "Polynomials",
|
|
727
|
+
"usage": "notation",
|
|
728
|
+
"minArgs": 2,
|
|
729
|
+
"maxArgs": 2,
|
|
730
|
+
"equationArgs": [],
|
|
731
|
+
"distElWise": false,
|
|
732
|
+
"deferArguments": false,
|
|
733
|
+
"registrationLevel": "system",
|
|
734
|
+
"syntax": "div(arg1, arg2)"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
"name": "divide",
|
|
738
|
+
"category": "Polynomials",
|
|
739
|
+
"usage": "notation",
|
|
740
|
+
"minArgs": 2,
|
|
741
|
+
"maxArgs": 2,
|
|
742
|
+
"equationArgs": [],
|
|
743
|
+
"distElWise": false,
|
|
744
|
+
"deferArguments": false,
|
|
745
|
+
"registrationLevel": "system",
|
|
746
|
+
"syntax": "divide(arg1, arg2)"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "dot",
|
|
750
|
+
"category": "Linear algebra",
|
|
751
|
+
"usage": "notation",
|
|
752
|
+
"minArgs": 2,
|
|
753
|
+
"maxArgs": 2,
|
|
754
|
+
"equationArgs": [],
|
|
755
|
+
"distElWise": false,
|
|
756
|
+
"deferArguments": false,
|
|
757
|
+
"registrationLevel": "system",
|
|
758
|
+
"syntax": "dot(arg1, arg2)",
|
|
759
|
+
"directApi": {
|
|
760
|
+
"package": "nerdamer/structures",
|
|
761
|
+
"name": "dot"
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"name": "each",
|
|
766
|
+
"category": "Nerdamer Language",
|
|
767
|
+
"usage": "scripting",
|
|
768
|
+
"minArgs": 3,
|
|
769
|
+
"maxArgs": 3,
|
|
770
|
+
"equationArgs": [],
|
|
771
|
+
"distElWise": false,
|
|
772
|
+
"deferArguments": true,
|
|
773
|
+
"registrationLevel": "system",
|
|
774
|
+
"syntax": "each(container, value, body)",
|
|
775
|
+
"summary": "Evaluates a body once for each value in a parser container.",
|
|
776
|
+
"parameters": [
|
|
777
|
+
{
|
|
778
|
+
"name": "container",
|
|
779
|
+
"description": "Vector, matrix, set, collection, or dictionary to traverse."
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"name": "value",
|
|
783
|
+
"description": "Local variable bound to the current value."
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"name": "body",
|
|
787
|
+
"description": "Deferred body evaluated for each value. Matrices are traversed in row-major order."
|
|
788
|
+
}
|
|
789
|
+
],
|
|
790
|
+
"examples": [
|
|
791
|
+
{
|
|
792
|
+
"input": "nerdamer('block(total:0,each([1,2,3],x,total:total+x),total)').text()",
|
|
793
|
+
"output": "6"
|
|
794
|
+
}
|
|
795
|
+
]
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"name": "erf",
|
|
799
|
+
"category": "Math",
|
|
800
|
+
"usage": "notation",
|
|
801
|
+
"minArgs": 1,
|
|
802
|
+
"maxArgs": 1,
|
|
803
|
+
"equationArgs": [],
|
|
804
|
+
"distElWise": true,
|
|
805
|
+
"deferArguments": false,
|
|
806
|
+
"registrationLevel": "system",
|
|
807
|
+
"syntax": "erf(arg1)"
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"name": "erfc",
|
|
811
|
+
"category": "Math",
|
|
812
|
+
"usage": "notation",
|
|
813
|
+
"minArgs": 1,
|
|
814
|
+
"maxArgs": 1,
|
|
815
|
+
"equationArgs": [],
|
|
816
|
+
"distElWise": true,
|
|
817
|
+
"deferArguments": false,
|
|
818
|
+
"registrationLevel": "system",
|
|
819
|
+
"syntax": "erfc(arg1)"
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"name": "evaluate",
|
|
823
|
+
"category": "Nerdamer Language",
|
|
824
|
+
"usage": "scripting",
|
|
825
|
+
"minArgs": 1,
|
|
826
|
+
"maxArgs": 3,
|
|
827
|
+
"equationArgs": [
|
|
828
|
+
0
|
|
829
|
+
],
|
|
830
|
+
"distElWise": false,
|
|
831
|
+
"deferArguments": true,
|
|
832
|
+
"registrationLevel": "system",
|
|
833
|
+
"syntax": "evaluate(value[, substitutions]) | evaluate(value, variables, point)",
|
|
834
|
+
"summary": "Evaluates a parser value immediately, optionally with substitutions, and returns the input unchanged if evaluation cannot complete.",
|
|
835
|
+
"parameters": [
|
|
836
|
+
{
|
|
837
|
+
"name": "value",
|
|
838
|
+
"description": "Expression, equation, or structured parser value to evaluate."
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"name": "substitutions",
|
|
842
|
+
"description": "Optional Dictionary mapping variable names to substitution values."
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
"name": "variables",
|
|
846
|
+
"description": "Variable Vector used with point in the three-argument form."
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"name": "point",
|
|
850
|
+
"description": "Value Vector corresponding positionally to variables."
|
|
851
|
+
}
|
|
852
|
+
],
|
|
853
|
+
"examples": [
|
|
854
|
+
{
|
|
855
|
+
"input": "nerdamer('evaluate(sin(2))').text()",
|
|
856
|
+
"output": "0.9092974268256816954"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"input": "nerdamer('evaluate([x+y,x*y],{x=>2,y=>3})').text()",
|
|
860
|
+
"output": "[5, 6]"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"input": "nerdamer('evaluate([u+v,u*v],[u,v],[2,3])').text()",
|
|
864
|
+
"output": "[5, 6]"
|
|
865
|
+
}
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"name": "exp",
|
|
870
|
+
"category": "Math",
|
|
871
|
+
"usage": "notation",
|
|
872
|
+
"minArgs": 1,
|
|
873
|
+
"maxArgs": 1,
|
|
874
|
+
"equationArgs": [],
|
|
875
|
+
"distElWise": true,
|
|
876
|
+
"deferArguments": false,
|
|
877
|
+
"registrationLevel": "system",
|
|
878
|
+
"syntax": "exp(arg1)"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "expand",
|
|
882
|
+
"category": "Math",
|
|
883
|
+
"usage": "notation",
|
|
884
|
+
"minArgs": 1,
|
|
885
|
+
"maxArgs": 1,
|
|
886
|
+
"equationArgs": [],
|
|
887
|
+
"distElWise": true,
|
|
888
|
+
"deferArguments": false,
|
|
889
|
+
"registrationLevel": "system",
|
|
890
|
+
"syntax": "expand(arg1)"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"name": "fact",
|
|
894
|
+
"category": "Math",
|
|
895
|
+
"usage": "notation",
|
|
896
|
+
"minArgs": 1,
|
|
897
|
+
"maxArgs": 1,
|
|
898
|
+
"equationArgs": [],
|
|
899
|
+
"distElWise": true,
|
|
900
|
+
"deferArguments": false,
|
|
901
|
+
"registrationLevel": "system",
|
|
902
|
+
"syntax": "fact(arg1)",
|
|
903
|
+
"canonicalName": "factorial"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"name": "factor",
|
|
907
|
+
"category": "Algebra",
|
|
908
|
+
"usage": "notation",
|
|
909
|
+
"minArgs": 1,
|
|
910
|
+
"maxArgs": 1,
|
|
911
|
+
"equationArgs": [],
|
|
912
|
+
"distElWise": true,
|
|
913
|
+
"deferArguments": false,
|
|
914
|
+
"registrationLevel": "system",
|
|
915
|
+
"syntax": "factor(expression)",
|
|
916
|
+
"summary": "Factors an expression symbolically.",
|
|
917
|
+
"parameters": [
|
|
918
|
+
{
|
|
919
|
+
"name": "expression",
|
|
920
|
+
"description": "Expression to factor."
|
|
921
|
+
}
|
|
922
|
+
],
|
|
923
|
+
"examples": [
|
|
924
|
+
{
|
|
925
|
+
"input": "nerdamer('factor(x^2-1)').text()",
|
|
926
|
+
"output": "(-1+x)*(1+x)"
|
|
927
|
+
}
|
|
928
|
+
],
|
|
929
|
+
"directApi": {
|
|
930
|
+
"package": "nerdamer/algebra",
|
|
931
|
+
"name": "factor"
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"name": "factorial",
|
|
936
|
+
"category": "Math",
|
|
937
|
+
"usage": "notation",
|
|
938
|
+
"minArgs": 1,
|
|
939
|
+
"maxArgs": 1,
|
|
940
|
+
"equationArgs": [],
|
|
941
|
+
"distElWise": true,
|
|
942
|
+
"deferArguments": false,
|
|
943
|
+
"registrationLevel": "system",
|
|
944
|
+
"syntax": "factorial(arg1)",
|
|
945
|
+
"aliases": [
|
|
946
|
+
"fact"
|
|
947
|
+
]
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"name": "fib",
|
|
951
|
+
"category": "Special functions",
|
|
952
|
+
"usage": "notation",
|
|
953
|
+
"minArgs": 1,
|
|
954
|
+
"maxArgs": 1,
|
|
955
|
+
"equationArgs": [],
|
|
956
|
+
"distElWise": true,
|
|
957
|
+
"deferArguments": false,
|
|
958
|
+
"registrationLevel": "system",
|
|
959
|
+
"syntax": "fib(arg1)"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"name": "floor",
|
|
963
|
+
"category": "Math",
|
|
964
|
+
"usage": "notation",
|
|
965
|
+
"minArgs": 1,
|
|
966
|
+
"maxArgs": 1,
|
|
967
|
+
"equationArgs": [],
|
|
968
|
+
"distElWise": true,
|
|
969
|
+
"deferArguments": false,
|
|
970
|
+
"registrationLevel": "system",
|
|
971
|
+
"syntax": "floor(arg1)"
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"name": "for",
|
|
975
|
+
"category": "Nerdamer Language",
|
|
976
|
+
"usage": "scripting",
|
|
977
|
+
"minArgs": 4,
|
|
978
|
+
"maxArgs": 4,
|
|
979
|
+
"equationArgs": [],
|
|
980
|
+
"distElWise": false,
|
|
981
|
+
"deferArguments": true,
|
|
982
|
+
"registrationLevel": "system",
|
|
983
|
+
"syntax": "for(arg1, arg2, arg3, arg4)"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"name": "forget",
|
|
987
|
+
"category": "Assumptions and sets",
|
|
988
|
+
"usage": "notation",
|
|
989
|
+
"minArgs": 1,
|
|
990
|
+
"maxArgs": 1,
|
|
991
|
+
"equationArgs": [],
|
|
992
|
+
"distElWise": false,
|
|
993
|
+
"deferArguments": false,
|
|
994
|
+
"registrationLevel": "system",
|
|
995
|
+
"syntax": "forget(arg1)"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"name": "gamma",
|
|
999
|
+
"category": "Math",
|
|
1000
|
+
"usage": "notation",
|
|
1001
|
+
"minArgs": 1,
|
|
1002
|
+
"maxArgs": 1,
|
|
1003
|
+
"equationArgs": [],
|
|
1004
|
+
"distElWise": true,
|
|
1005
|
+
"deferArguments": false,
|
|
1006
|
+
"registrationLevel": "system",
|
|
1007
|
+
"syntax": "gamma(arg1)"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"name": "gcd",
|
|
1011
|
+
"category": "Algebra",
|
|
1012
|
+
"usage": "notation",
|
|
1013
|
+
"minArgs": 2,
|
|
1014
|
+
"maxArgs": 2,
|
|
1015
|
+
"equationArgs": [],
|
|
1016
|
+
"distElWise": true,
|
|
1017
|
+
"deferArguments": false,
|
|
1018
|
+
"registrationLevel": "system",
|
|
1019
|
+
"syntax": "gcd(arg1, arg2)",
|
|
1020
|
+
"directApi": {
|
|
1021
|
+
"package": "nerdamer/algebra",
|
|
1022
|
+
"name": "gcd"
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"name": "groebner",
|
|
1027
|
+
"category": "Algebra",
|
|
1028
|
+
"usage": "notation",
|
|
1029
|
+
"minArgs": 1,
|
|
1030
|
+
"maxArgs": 2,
|
|
1031
|
+
"equationArgs": [],
|
|
1032
|
+
"distElWise": false,
|
|
1033
|
+
"deferArguments": false,
|
|
1034
|
+
"registrationLevel": "system",
|
|
1035
|
+
"syntax": "groebner(arg1, [arg2])",
|
|
1036
|
+
"directApi": {
|
|
1037
|
+
"package": "nerdamer/algebra",
|
|
1038
|
+
"name": "groebner"
|
|
1039
|
+
}
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"name": "heaviside",
|
|
1043
|
+
"category": "Math",
|
|
1044
|
+
"usage": "notation",
|
|
1045
|
+
"minArgs": 1,
|
|
1046
|
+
"maxArgs": 1,
|
|
1047
|
+
"equationArgs": [],
|
|
1048
|
+
"distElWise": true,
|
|
1049
|
+
"deferArguments": false,
|
|
1050
|
+
"registrationLevel": "system",
|
|
1051
|
+
"syntax": "heaviside(arg1)"
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"name": "hypot",
|
|
1055
|
+
"category": "Math",
|
|
1056
|
+
"usage": "notation",
|
|
1057
|
+
"minArgs": 2,
|
|
1058
|
+
"maxArgs": 2,
|
|
1059
|
+
"equationArgs": [],
|
|
1060
|
+
"distElWise": true,
|
|
1061
|
+
"deferArguments": false,
|
|
1062
|
+
"registrationLevel": "system",
|
|
1063
|
+
"syntax": "hypot(arg1, arg2)"
|
|
1064
|
+
},
|
|
1065
|
+
{
|
|
1066
|
+
"name": "if",
|
|
1067
|
+
"category": "Nerdamer Language",
|
|
1068
|
+
"usage": "scripting",
|
|
1069
|
+
"minArgs": 2,
|
|
1070
|
+
"maxArgs": 3,
|
|
1071
|
+
"equationArgs": [],
|
|
1072
|
+
"distElWise": false,
|
|
1073
|
+
"deferArguments": true,
|
|
1074
|
+
"registrationLevel": "system",
|
|
1075
|
+
"syntax": "if(condition, whenTrue[, whenFalse])",
|
|
1076
|
+
"summary": "Evaluates one of two parser expressions based on a condition.",
|
|
1077
|
+
"parameters": [
|
|
1078
|
+
{
|
|
1079
|
+
"name": "condition",
|
|
1080
|
+
"description": "Condition evaluated by the Nerdamer Language runtime."
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"name": "whenTrue",
|
|
1084
|
+
"description": "Expression evaluated when the condition is true."
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"name": "whenFalse",
|
|
1088
|
+
"description": "Optional expression evaluated when the condition is false."
|
|
1089
|
+
}
|
|
1090
|
+
],
|
|
1091
|
+
"examples": [
|
|
1092
|
+
{
|
|
1093
|
+
"input": "nerdamer('if(1,5,6)').text()",
|
|
1094
|
+
"output": "5"
|
|
1095
|
+
}
|
|
1096
|
+
]
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"name": "iferror",
|
|
1100
|
+
"category": "Nerdamer Language",
|
|
1101
|
+
"usage": "scripting",
|
|
1102
|
+
"minArgs": 2,
|
|
1103
|
+
"maxArgs": 2,
|
|
1104
|
+
"equationArgs": [],
|
|
1105
|
+
"distElWise": false,
|
|
1106
|
+
"deferArguments": true,
|
|
1107
|
+
"registrationLevel": "system",
|
|
1108
|
+
"syntax": "iferror(arg1, arg2)"
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"name": "ilaplace",
|
|
1112
|
+
"category": "Calculus",
|
|
1113
|
+
"usage": "notation",
|
|
1114
|
+
"minArgs": 3,
|
|
1115
|
+
"maxArgs": 3,
|
|
1116
|
+
"equationArgs": [],
|
|
1117
|
+
"distElWise": true,
|
|
1118
|
+
"deferArguments": false,
|
|
1119
|
+
"registrationLevel": "system",
|
|
1120
|
+
"syntax": "ilaplace(arg1, arg2, arg3)",
|
|
1121
|
+
"directApi": {
|
|
1122
|
+
"package": "nerdamer/calculus",
|
|
1123
|
+
"name": "ilaplace"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"name": "imagpart",
|
|
1128
|
+
"category": "Complex",
|
|
1129
|
+
"usage": "notation",
|
|
1130
|
+
"minArgs": 1,
|
|
1131
|
+
"maxArgs": 1,
|
|
1132
|
+
"equationArgs": [],
|
|
1133
|
+
"distElWise": true,
|
|
1134
|
+
"deferArguments": false,
|
|
1135
|
+
"registrationLevel": "system",
|
|
1136
|
+
"syntax": "imagpart(arg1)"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"name": "imatrix",
|
|
1140
|
+
"category": "Linear algebra",
|
|
1141
|
+
"usage": "notation",
|
|
1142
|
+
"minArgs": 1,
|
|
1143
|
+
"maxArgs": 1,
|
|
1144
|
+
"equationArgs": [],
|
|
1145
|
+
"distElWise": false,
|
|
1146
|
+
"deferArguments": false,
|
|
1147
|
+
"registrationLevel": "system",
|
|
1148
|
+
"syntax": "imatrix(arg1)",
|
|
1149
|
+
"directApi": {
|
|
1150
|
+
"package": "nerdamer/structures",
|
|
1151
|
+
"name": "imatrix"
|
|
1152
|
+
}
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"name": "integrate",
|
|
1156
|
+
"category": "Calculus",
|
|
1157
|
+
"usage": "notation",
|
|
1158
|
+
"minArgs": 1,
|
|
1159
|
+
"maxArgs": 2,
|
|
1160
|
+
"equationArgs": [
|
|
1161
|
+
0
|
|
1162
|
+
],
|
|
1163
|
+
"distElWise": true,
|
|
1164
|
+
"deferArguments": false,
|
|
1165
|
+
"registrationLevel": "system",
|
|
1166
|
+
"syntax": "integrate(expression[, variable])",
|
|
1167
|
+
"summary": "Computes an indefinite integral symbolically.",
|
|
1168
|
+
"parameters": [
|
|
1169
|
+
{
|
|
1170
|
+
"name": "expression",
|
|
1171
|
+
"description": "Expression to integrate."
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"name": "variable",
|
|
1175
|
+
"description": "Optional integration variable."
|
|
1176
|
+
}
|
|
1177
|
+
],
|
|
1178
|
+
"examples": [
|
|
1179
|
+
{
|
|
1180
|
+
"input": "nerdamer('integrate(x^2,x)').text()"
|
|
1181
|
+
}
|
|
1182
|
+
],
|
|
1183
|
+
"directApi": {
|
|
1184
|
+
"package": "nerdamer/calculus",
|
|
1185
|
+
"name": "integrate"
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"name": "iserror",
|
|
1190
|
+
"category": "Nerdamer Language",
|
|
1191
|
+
"usage": "scripting",
|
|
1192
|
+
"minArgs": 1,
|
|
1193
|
+
"maxArgs": 1,
|
|
1194
|
+
"equationArgs": [],
|
|
1195
|
+
"distElWise": false,
|
|
1196
|
+
"deferArguments": true,
|
|
1197
|
+
"registrationLevel": "system",
|
|
1198
|
+
"syntax": "iserror(arg1)"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"name": "isprime",
|
|
1202
|
+
"category": "Special functions",
|
|
1203
|
+
"usage": "notation",
|
|
1204
|
+
"minArgs": 1,
|
|
1205
|
+
"maxArgs": 1,
|
|
1206
|
+
"equationArgs": [],
|
|
1207
|
+
"distElWise": true,
|
|
1208
|
+
"deferArguments": false,
|
|
1209
|
+
"registrationLevel": "system",
|
|
1210
|
+
"syntax": "isprime(arg1)",
|
|
1211
|
+
"directApi": {
|
|
1212
|
+
"package": "nerdamer/algebra",
|
|
1213
|
+
"name": "isPrime"
|
|
1214
|
+
}
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"name": "laplace",
|
|
1218
|
+
"category": "Calculus",
|
|
1219
|
+
"usage": "notation",
|
|
1220
|
+
"minArgs": 3,
|
|
1221
|
+
"maxArgs": 3,
|
|
1222
|
+
"equationArgs": [],
|
|
1223
|
+
"distElWise": true,
|
|
1224
|
+
"deferArguments": false,
|
|
1225
|
+
"registrationLevel": "system",
|
|
1226
|
+
"syntax": "laplace(arg1, arg2, arg3)",
|
|
1227
|
+
"directApi": {
|
|
1228
|
+
"package": "nerdamer/calculus",
|
|
1229
|
+
"name": "laplace"
|
|
1230
|
+
}
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"name": "lcm",
|
|
1234
|
+
"category": "Algebra",
|
|
1235
|
+
"usage": "notation",
|
|
1236
|
+
"minArgs": 2,
|
|
1237
|
+
"maxArgs": 2,
|
|
1238
|
+
"equationArgs": [],
|
|
1239
|
+
"distElWise": true,
|
|
1240
|
+
"deferArguments": false,
|
|
1241
|
+
"registrationLevel": "system",
|
|
1242
|
+
"syntax": "lcm(arg1, arg2)",
|
|
1243
|
+
"directApi": {
|
|
1244
|
+
"package": "nerdamer/algebra",
|
|
1245
|
+
"name": "lcm"
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
"name": "let",
|
|
1250
|
+
"category": "Nerdamer Language",
|
|
1251
|
+
"usage": "scripting",
|
|
1252
|
+
"minArgs": 3,
|
|
1253
|
+
"maxArgs": -1,
|
|
1254
|
+
"equationArgs": [],
|
|
1255
|
+
"distElWise": false,
|
|
1256
|
+
"deferArguments": true,
|
|
1257
|
+
"registrationLevel": "system",
|
|
1258
|
+
"syntax": "let(arg1, arg2, arg3, ...)"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"name": "limit",
|
|
1262
|
+
"category": "Calculus",
|
|
1263
|
+
"usage": "notation",
|
|
1264
|
+
"minArgs": 3,
|
|
1265
|
+
"maxArgs": 4,
|
|
1266
|
+
"equationArgs": [],
|
|
1267
|
+
"distElWise": true,
|
|
1268
|
+
"deferArguments": false,
|
|
1269
|
+
"registrationLevel": "system",
|
|
1270
|
+
"syntax": "limit(expression, variable, value[, direction])",
|
|
1271
|
+
"summary": "Computes the symbolic limit of an expression.",
|
|
1272
|
+
"parameters": [
|
|
1273
|
+
{
|
|
1274
|
+
"name": "expression",
|
|
1275
|
+
"description": "Expression whose limit should be evaluated."
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"name": "variable",
|
|
1279
|
+
"description": "Variable approaching the requested value."
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"name": "value",
|
|
1283
|
+
"description": "Value approached by the variable."
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"name": "direction",
|
|
1287
|
+
"description": "Optional one-sided or two-sided limit direction."
|
|
1288
|
+
}
|
|
1289
|
+
],
|
|
1290
|
+
"examples": [
|
|
1291
|
+
{
|
|
1292
|
+
"input": "nerdamer('limit(sin(x)/x,x,0)').text()"
|
|
1293
|
+
}
|
|
1294
|
+
],
|
|
1295
|
+
"directApi": {
|
|
1296
|
+
"package": "nerdamer/calculus",
|
|
1297
|
+
"name": "limit"
|
|
1298
|
+
}
|
|
1299
|
+
},
|
|
1300
|
+
{
|
|
1301
|
+
"name": "log",
|
|
1302
|
+
"category": "Math",
|
|
1303
|
+
"usage": "notation",
|
|
1304
|
+
"minArgs": 1,
|
|
1305
|
+
"maxArgs": 2,
|
|
1306
|
+
"equationArgs": [],
|
|
1307
|
+
"distElWise": true,
|
|
1308
|
+
"deferArguments": false,
|
|
1309
|
+
"registrationLevel": "system",
|
|
1310
|
+
"syntax": "log(arg1, [arg2])"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"name": "matrix",
|
|
1314
|
+
"category": "Linear algebra",
|
|
1315
|
+
"usage": "notation",
|
|
1316
|
+
"minArgs": 1,
|
|
1317
|
+
"maxArgs": -1,
|
|
1318
|
+
"equationArgs": [],
|
|
1319
|
+
"distElWise": false,
|
|
1320
|
+
"deferArguments": false,
|
|
1321
|
+
"registrationLevel": "system",
|
|
1322
|
+
"syntax": "matrix(row1[, row2, ...])",
|
|
1323
|
+
"summary": "Constructs a matrix from parser arguments.",
|
|
1324
|
+
"parameters": [
|
|
1325
|
+
{
|
|
1326
|
+
"name": "row",
|
|
1327
|
+
"description": "One or more row vectors or row expressions."
|
|
1328
|
+
}
|
|
1329
|
+
],
|
|
1330
|
+
"examples": [
|
|
1331
|
+
{
|
|
1332
|
+
"input": "nerdamer('matrix([1,2],[3,4])').text()"
|
|
1333
|
+
}
|
|
1334
|
+
]
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"name": "max",
|
|
1338
|
+
"category": "Math",
|
|
1339
|
+
"usage": "notation",
|
|
1340
|
+
"minArgs": 2,
|
|
1341
|
+
"maxArgs": -1,
|
|
1342
|
+
"equationArgs": [],
|
|
1343
|
+
"distElWise": true,
|
|
1344
|
+
"deferArguments": false,
|
|
1345
|
+
"registrationLevel": "system",
|
|
1346
|
+
"syntax": "max(arg1, arg2, ...)"
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"name": "min",
|
|
1350
|
+
"category": "Math",
|
|
1351
|
+
"usage": "notation",
|
|
1352
|
+
"minArgs": 2,
|
|
1353
|
+
"maxArgs": -1,
|
|
1354
|
+
"equationArgs": [],
|
|
1355
|
+
"distElWise": true,
|
|
1356
|
+
"deferArguments": false,
|
|
1357
|
+
"registrationLevel": "system",
|
|
1358
|
+
"syntax": "min(arg1, arg2, ...)"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"name": "mod",
|
|
1362
|
+
"category": "Math",
|
|
1363
|
+
"usage": "notation",
|
|
1364
|
+
"minArgs": 2,
|
|
1365
|
+
"maxArgs": 2,
|
|
1366
|
+
"equationArgs": [],
|
|
1367
|
+
"distElWise": true,
|
|
1368
|
+
"deferArguments": false,
|
|
1369
|
+
"registrationLevel": "system",
|
|
1370
|
+
"syntax": "mod(arg1, arg2)"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"name": "modinv",
|
|
1374
|
+
"category": "Math",
|
|
1375
|
+
"usage": "notation",
|
|
1376
|
+
"minArgs": 2,
|
|
1377
|
+
"maxArgs": 2,
|
|
1378
|
+
"equationArgs": [],
|
|
1379
|
+
"distElWise": true,
|
|
1380
|
+
"deferArguments": false,
|
|
1381
|
+
"registrationLevel": "system",
|
|
1382
|
+
"syntax": "modinv(arg1, arg2)"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"name": "not",
|
|
1386
|
+
"category": "Nerdamer Language",
|
|
1387
|
+
"usage": "scripting",
|
|
1388
|
+
"minArgs": 1,
|
|
1389
|
+
"maxArgs": 1,
|
|
1390
|
+
"equationArgs": [],
|
|
1391
|
+
"distElWise": false,
|
|
1392
|
+
"deferArguments": false,
|
|
1393
|
+
"registrationLevel": "system",
|
|
1394
|
+
"syntax": "not(arg1)"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"name": "nthroot",
|
|
1398
|
+
"category": "Math",
|
|
1399
|
+
"usage": "notation",
|
|
1400
|
+
"minArgs": 2,
|
|
1401
|
+
"maxArgs": 2,
|
|
1402
|
+
"equationArgs": [],
|
|
1403
|
+
"distElWise": true,
|
|
1404
|
+
"deferArguments": false,
|
|
1405
|
+
"registrationLevel": "system",
|
|
1406
|
+
"syntax": "nthroot(arg1, arg2)"
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"name": "nullspace",
|
|
1410
|
+
"category": "Linear algebra",
|
|
1411
|
+
"usage": "notation",
|
|
1412
|
+
"minArgs": 1,
|
|
1413
|
+
"maxArgs": 2,
|
|
1414
|
+
"equationArgs": [],
|
|
1415
|
+
"distElWise": false,
|
|
1416
|
+
"deferArguments": false,
|
|
1417
|
+
"registrationLevel": "system",
|
|
1418
|
+
"syntax": "nullspace(matrix[, prime])",
|
|
1419
|
+
"summary": "Returns a vector containing a basis for the nullspace of a matrix.",
|
|
1420
|
+
"parameters": [
|
|
1421
|
+
{
|
|
1422
|
+
"name": "matrix",
|
|
1423
|
+
"description": "Matrix whose nullspace should be computed."
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"name": "prime",
|
|
1427
|
+
"description": "Optional modulus for finite-field arithmetic."
|
|
1428
|
+
}
|
|
1429
|
+
],
|
|
1430
|
+
"examples": [
|
|
1431
|
+
{
|
|
1432
|
+
"input": "nerdamer('nullspace(matrix([1,2,3],[2,4,6]))').text()",
|
|
1433
|
+
"output": "[[-2, 1, 0], [-3, 0, 1]]"
|
|
1434
|
+
}
|
|
1435
|
+
],
|
|
1436
|
+
"directApi": {
|
|
1437
|
+
"package": "nerdamer/structures",
|
|
1438
|
+
"name": "nullspace"
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"name": "numeric",
|
|
1443
|
+
"category": "Math",
|
|
1444
|
+
"usage": "notation",
|
|
1445
|
+
"minArgs": 1,
|
|
1446
|
+
"maxArgs": 2,
|
|
1447
|
+
"equationArgs": [
|
|
1448
|
+
0
|
|
1449
|
+
],
|
|
1450
|
+
"distElWise": false,
|
|
1451
|
+
"deferArguments": true,
|
|
1452
|
+
"registrationLevel": "system",
|
|
1453
|
+
"syntax": "numeric(value[, precision])",
|
|
1454
|
+
"summary": "Evaluates a numeric value to a finite number of significant decimal digits.",
|
|
1455
|
+
"parameters": [
|
|
1456
|
+
{
|
|
1457
|
+
"name": "value",
|
|
1458
|
+
"description": "Value to evaluate numerically."
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"name": "precision",
|
|
1462
|
+
"description": "Optional positive number of significant digits. Defaults to the active Nerdamer precision."
|
|
1463
|
+
}
|
|
1464
|
+
],
|
|
1465
|
+
"examples": [
|
|
1466
|
+
{
|
|
1467
|
+
"input": "nerdamer('numeric(1/3,5)').text()",
|
|
1468
|
+
"output": "0.33333"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"input": "nerdamer('numeric([1/3,2/3],5)').text()",
|
|
1472
|
+
"output": "[0.33333, 0.66667]"
|
|
1473
|
+
}
|
|
1474
|
+
]
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"name": "or",
|
|
1478
|
+
"category": "Nerdamer Language",
|
|
1479
|
+
"usage": "scripting",
|
|
1480
|
+
"minArgs": 2,
|
|
1481
|
+
"maxArgs": -1,
|
|
1482
|
+
"equationArgs": [],
|
|
1483
|
+
"distElWise": false,
|
|
1484
|
+
"deferArguments": true,
|
|
1485
|
+
"registrationLevel": "system",
|
|
1486
|
+
"syntax": "or(arg1, arg2, ...)"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
"name": "parens",
|
|
1490
|
+
"category": "Math",
|
|
1491
|
+
"usage": "notation",
|
|
1492
|
+
"minArgs": 1,
|
|
1493
|
+
"maxArgs": 1,
|
|
1494
|
+
"equationArgs": [],
|
|
1495
|
+
"distElWise": true,
|
|
1496
|
+
"deferArguments": false,
|
|
1497
|
+
"registrationLevel": "system",
|
|
1498
|
+
"syntax": "parens(arg1)"
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"name": "partfrac",
|
|
1502
|
+
"category": "Algebra",
|
|
1503
|
+
"usage": "notation",
|
|
1504
|
+
"minArgs": 1,
|
|
1505
|
+
"maxArgs": 2,
|
|
1506
|
+
"equationArgs": [],
|
|
1507
|
+
"distElWise": true,
|
|
1508
|
+
"deferArguments": false,
|
|
1509
|
+
"registrationLevel": "system",
|
|
1510
|
+
"syntax": "partfrac(arg1, [arg2])",
|
|
1511
|
+
"directApi": {
|
|
1512
|
+
"package": "nerdamer/algebra",
|
|
1513
|
+
"name": "partfrac"
|
|
1514
|
+
}
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"name": "polarform",
|
|
1518
|
+
"category": "Complex",
|
|
1519
|
+
"usage": "notation",
|
|
1520
|
+
"minArgs": 1,
|
|
1521
|
+
"maxArgs": 1,
|
|
1522
|
+
"equationArgs": [],
|
|
1523
|
+
"distElWise": true,
|
|
1524
|
+
"deferArguments": false,
|
|
1525
|
+
"registrationLevel": "system",
|
|
1526
|
+
"syntax": "polarform(arg1)"
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
"name": "polyfactors",
|
|
1530
|
+
"category": "Algebra",
|
|
1531
|
+
"usage": "notation",
|
|
1532
|
+
"minArgs": 1,
|
|
1533
|
+
"maxArgs": 1,
|
|
1534
|
+
"equationArgs": [],
|
|
1535
|
+
"distElWise": false,
|
|
1536
|
+
"deferArguments": false,
|
|
1537
|
+
"registrationLevel": "system",
|
|
1538
|
+
"syntax": "polyfactors(arg1)",
|
|
1539
|
+
"directApi": {
|
|
1540
|
+
"package": "nerdamer/algebra",
|
|
1541
|
+
"name": "polyFactors"
|
|
1542
|
+
}
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"name": "product",
|
|
1546
|
+
"category": "Calculus",
|
|
1547
|
+
"usage": "notation",
|
|
1548
|
+
"minArgs": 4,
|
|
1549
|
+
"maxArgs": 4,
|
|
1550
|
+
"equationArgs": [],
|
|
1551
|
+
"distElWise": true,
|
|
1552
|
+
"deferArguments": false,
|
|
1553
|
+
"registrationLevel": "system",
|
|
1554
|
+
"syntax": "product(arg1, arg2, arg3, arg4)",
|
|
1555
|
+
"directApi": {
|
|
1556
|
+
"package": "nerdamer/calculus",
|
|
1557
|
+
"name": "product"
|
|
1558
|
+
}
|
|
1559
|
+
},
|
|
1560
|
+
{
|
|
1561
|
+
"name": "realpart",
|
|
1562
|
+
"category": "Complex",
|
|
1563
|
+
"usage": "notation",
|
|
1564
|
+
"minArgs": 1,
|
|
1565
|
+
"maxArgs": 1,
|
|
1566
|
+
"equationArgs": [],
|
|
1567
|
+
"distElWise": true,
|
|
1568
|
+
"deferArguments": false,
|
|
1569
|
+
"registrationLevel": "system",
|
|
1570
|
+
"syntax": "realpart(arg1)"
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"name": "rectform",
|
|
1574
|
+
"category": "Complex",
|
|
1575
|
+
"usage": "notation",
|
|
1576
|
+
"minArgs": 1,
|
|
1577
|
+
"maxArgs": 1,
|
|
1578
|
+
"equationArgs": [],
|
|
1579
|
+
"distElWise": true,
|
|
1580
|
+
"deferArguments": false,
|
|
1581
|
+
"registrationLevel": "system",
|
|
1582
|
+
"syntax": "rectform(arg1)"
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
"name": "return",
|
|
1586
|
+
"category": "Nerdamer Language",
|
|
1587
|
+
"usage": "scripting",
|
|
1588
|
+
"minArgs": 1,
|
|
1589
|
+
"maxArgs": 1,
|
|
1590
|
+
"equationArgs": [
|
|
1591
|
+
0
|
|
1592
|
+
],
|
|
1593
|
+
"distElWise": false,
|
|
1594
|
+
"deferArguments": false,
|
|
1595
|
+
"registrationLevel": "system",
|
|
1596
|
+
"syntax": "return(arg1)"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"name": "round",
|
|
1600
|
+
"category": "Math",
|
|
1601
|
+
"usage": "notation",
|
|
1602
|
+
"minArgs": 1,
|
|
1603
|
+
"maxArgs": 2,
|
|
1604
|
+
"equationArgs": [],
|
|
1605
|
+
"distElWise": true,
|
|
1606
|
+
"deferArguments": false,
|
|
1607
|
+
"registrationLevel": "system",
|
|
1608
|
+
"syntax": "round(arg1, [arg2])"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"name": "rref",
|
|
1612
|
+
"category": "Linear algebra",
|
|
1613
|
+
"usage": "notation",
|
|
1614
|
+
"minArgs": 1,
|
|
1615
|
+
"maxArgs": 2,
|
|
1616
|
+
"equationArgs": [],
|
|
1617
|
+
"distElWise": false,
|
|
1618
|
+
"deferArguments": false,
|
|
1619
|
+
"registrationLevel": "system",
|
|
1620
|
+
"syntax": "rref(matrix[, prime])",
|
|
1621
|
+
"summary": "Returns the reduced row-echelon form of a matrix.",
|
|
1622
|
+
"parameters": [
|
|
1623
|
+
{
|
|
1624
|
+
"name": "matrix",
|
|
1625
|
+
"description": "Matrix to reduce."
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"name": "prime",
|
|
1629
|
+
"description": "Optional modulus for finite-field arithmetic."
|
|
1630
|
+
}
|
|
1631
|
+
],
|
|
1632
|
+
"examples": [
|
|
1633
|
+
{
|
|
1634
|
+
"input": "nerdamer('rref(matrix([1,2],[3,4]))').text()",
|
|
1635
|
+
"output": "matrix([1, 0], [0, 1])"
|
|
1636
|
+
}
|
|
1637
|
+
]
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"name": "sec",
|
|
1641
|
+
"category": "Trigonometry",
|
|
1642
|
+
"usage": "notation",
|
|
1643
|
+
"minArgs": 1,
|
|
1644
|
+
"maxArgs": 1,
|
|
1645
|
+
"equationArgs": [],
|
|
1646
|
+
"distElWise": true,
|
|
1647
|
+
"deferArguments": false,
|
|
1648
|
+
"registrationLevel": "system",
|
|
1649
|
+
"syntax": "sec(arg1)"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"name": "sech",
|
|
1653
|
+
"category": "Trigonometry",
|
|
1654
|
+
"usage": "notation",
|
|
1655
|
+
"minArgs": 1,
|
|
1656
|
+
"maxArgs": 1,
|
|
1657
|
+
"equationArgs": [],
|
|
1658
|
+
"distElWise": true,
|
|
1659
|
+
"deferArguments": false,
|
|
1660
|
+
"registrationLevel": "system",
|
|
1661
|
+
"syntax": "sech(arg1)"
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
"name": "sign",
|
|
1665
|
+
"category": "Math",
|
|
1666
|
+
"usage": "notation",
|
|
1667
|
+
"minArgs": 1,
|
|
1668
|
+
"maxArgs": 1,
|
|
1669
|
+
"equationArgs": [],
|
|
1670
|
+
"distElWise": true,
|
|
1671
|
+
"deferArguments": false,
|
|
1672
|
+
"registrationLevel": "system",
|
|
1673
|
+
"syntax": "sign(arg1)"
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"name": "simplify",
|
|
1677
|
+
"category": "Algebra",
|
|
1678
|
+
"usage": "notation",
|
|
1679
|
+
"minArgs": 1,
|
|
1680
|
+
"maxArgs": 1,
|
|
1681
|
+
"equationArgs": [],
|
|
1682
|
+
"distElWise": true,
|
|
1683
|
+
"deferArguments": false,
|
|
1684
|
+
"registrationLevel": "system",
|
|
1685
|
+
"syntax": "simplify(arg1)",
|
|
1686
|
+
"directApi": {
|
|
1687
|
+
"package": "nerdamer/algebra",
|
|
1688
|
+
"name": "simplify"
|
|
1689
|
+
}
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"name": "sin",
|
|
1693
|
+
"category": "Trigonometry",
|
|
1694
|
+
"usage": "notation",
|
|
1695
|
+
"minArgs": 1,
|
|
1696
|
+
"maxArgs": 1,
|
|
1697
|
+
"equationArgs": [],
|
|
1698
|
+
"distElWise": true,
|
|
1699
|
+
"deferArguments": false,
|
|
1700
|
+
"registrationLevel": "system",
|
|
1701
|
+
"syntax": "sin(arg1)"
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"name": "sinc",
|
|
1705
|
+
"category": "Special functions",
|
|
1706
|
+
"usage": "notation",
|
|
1707
|
+
"minArgs": 1,
|
|
1708
|
+
"maxArgs": 1,
|
|
1709
|
+
"equationArgs": [],
|
|
1710
|
+
"distElWise": true,
|
|
1711
|
+
"deferArguments": false,
|
|
1712
|
+
"registrationLevel": "system",
|
|
1713
|
+
"syntax": "sinc(arg1)"
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
"name": "sinh",
|
|
1717
|
+
"category": "Trigonometry",
|
|
1718
|
+
"usage": "notation",
|
|
1719
|
+
"minArgs": 1,
|
|
1720
|
+
"maxArgs": 1,
|
|
1721
|
+
"equationArgs": [],
|
|
1722
|
+
"distElWise": true,
|
|
1723
|
+
"deferArguments": false,
|
|
1724
|
+
"registrationLevel": "system",
|
|
1725
|
+
"syntax": "sinh(arg1)"
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"name": "size",
|
|
1729
|
+
"category": "Math",
|
|
1730
|
+
"usage": "notation",
|
|
1731
|
+
"minArgs": 1,
|
|
1732
|
+
"maxArgs": 1,
|
|
1733
|
+
"equationArgs": [],
|
|
1734
|
+
"distElWise": false,
|
|
1735
|
+
"deferArguments": false,
|
|
1736
|
+
"registrationLevel": "system",
|
|
1737
|
+
"syntax": "size(value)",
|
|
1738
|
+
"summary": "Returns the dimensions of a structured parser value.",
|
|
1739
|
+
"parameters": [
|
|
1740
|
+
{
|
|
1741
|
+
"name": "value",
|
|
1742
|
+
"description": "Vector, matrix, set, collection, or dictionary whose dimensions should be returned."
|
|
1743
|
+
}
|
|
1744
|
+
],
|
|
1745
|
+
"examples": [
|
|
1746
|
+
{
|
|
1747
|
+
"input": "nerdamer('size([a,b,c])').text()",
|
|
1748
|
+
"output": "[3]"
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"input": "nerdamer('size(matrix([1,2,3],[4,5,6]))').text()",
|
|
1752
|
+
"output": "[2, 3]"
|
|
1753
|
+
}
|
|
1754
|
+
]
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"name": "solve",
|
|
1758
|
+
"category": "Solving",
|
|
1759
|
+
"usage": "notation",
|
|
1760
|
+
"minArgs": 2,
|
|
1761
|
+
"maxArgs": 2,
|
|
1762
|
+
"equationArgs": [
|
|
1763
|
+
0
|
|
1764
|
+
],
|
|
1765
|
+
"distElWise": false,
|
|
1766
|
+
"deferArguments": false,
|
|
1767
|
+
"registrationLevel": "system",
|
|
1768
|
+
"syntax": "solve(expressionOrEquation, variable)",
|
|
1769
|
+
"summary": "Solves an expression or equation for a variable.",
|
|
1770
|
+
"parameters": [
|
|
1771
|
+
{
|
|
1772
|
+
"name": "expressionOrEquation",
|
|
1773
|
+
"description": "Expression or equation to solve."
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"name": "variable",
|
|
1777
|
+
"description": "Variable to solve for."
|
|
1778
|
+
}
|
|
1779
|
+
],
|
|
1780
|
+
"examples": [
|
|
1781
|
+
{
|
|
1782
|
+
"input": "nerdamer('solve(x^2-4,x)').text()"
|
|
1783
|
+
}
|
|
1784
|
+
],
|
|
1785
|
+
"directApi": {
|
|
1786
|
+
"package": "nerdamer/solve",
|
|
1787
|
+
"name": "solve"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"name": "solveeqs",
|
|
1792
|
+
"category": "Solving",
|
|
1793
|
+
"usage": "notation",
|
|
1794
|
+
"minArgs": 1,
|
|
1795
|
+
"maxArgs": 1,
|
|
1796
|
+
"equationArgs": [],
|
|
1797
|
+
"distElWise": false,
|
|
1798
|
+
"deferArguments": false,
|
|
1799
|
+
"registrationLevel": "system",
|
|
1800
|
+
"syntax": "solveeqs(arg1)",
|
|
1801
|
+
"directApi": {
|
|
1802
|
+
"package": "nerdamer/solve",
|
|
1803
|
+
"name": "solveSystem"
|
|
1804
|
+
}
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"name": "sqcomp",
|
|
1808
|
+
"category": "Algebra",
|
|
1809
|
+
"usage": "notation",
|
|
1810
|
+
"minArgs": 1,
|
|
1811
|
+
"maxArgs": 2,
|
|
1812
|
+
"equationArgs": [],
|
|
1813
|
+
"distElWise": true,
|
|
1814
|
+
"deferArguments": false,
|
|
1815
|
+
"registrationLevel": "system",
|
|
1816
|
+
"syntax": "sqcomp(arg1, [arg2])",
|
|
1817
|
+
"directApi": {
|
|
1818
|
+
"package": "nerdamer/algebra",
|
|
1819
|
+
"name": "completeSquare"
|
|
1820
|
+
}
|
|
1821
|
+
},
|
|
1822
|
+
{
|
|
1823
|
+
"name": "sqrt",
|
|
1824
|
+
"category": "Math",
|
|
1825
|
+
"usage": "notation",
|
|
1826
|
+
"minArgs": 1,
|
|
1827
|
+
"maxArgs": 1,
|
|
1828
|
+
"equationArgs": [],
|
|
1829
|
+
"distElWise": true,
|
|
1830
|
+
"deferArguments": false,
|
|
1831
|
+
"registrationLevel": "system",
|
|
1832
|
+
"syntax": "sqrt(arg1)"
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
"name": "subst",
|
|
1836
|
+
"category": "Math",
|
|
1837
|
+
"usage": "notation",
|
|
1838
|
+
"minArgs": 3,
|
|
1839
|
+
"maxArgs": 3,
|
|
1840
|
+
"equationArgs": [],
|
|
1841
|
+
"distElWise": true,
|
|
1842
|
+
"deferArguments": false,
|
|
1843
|
+
"registrationLevel": "system",
|
|
1844
|
+
"syntax": "subst(arg1, arg2, arg3)"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"name": "sum",
|
|
1848
|
+
"category": "Calculus",
|
|
1849
|
+
"usage": "notation",
|
|
1850
|
+
"minArgs": 4,
|
|
1851
|
+
"maxArgs": 4,
|
|
1852
|
+
"equationArgs": [],
|
|
1853
|
+
"distElWise": true,
|
|
1854
|
+
"deferArguments": false,
|
|
1855
|
+
"registrationLevel": "system",
|
|
1856
|
+
"syntax": "sum(arg1, arg2, arg3, arg4)",
|
|
1857
|
+
"directApi": {
|
|
1858
|
+
"package": "nerdamer/calculus",
|
|
1859
|
+
"name": "sum"
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"name": "tan",
|
|
1864
|
+
"category": "Trigonometry",
|
|
1865
|
+
"usage": "notation",
|
|
1866
|
+
"minArgs": 1,
|
|
1867
|
+
"maxArgs": 1,
|
|
1868
|
+
"equationArgs": [],
|
|
1869
|
+
"distElWise": true,
|
|
1870
|
+
"deferArguments": false,
|
|
1871
|
+
"registrationLevel": "system",
|
|
1872
|
+
"syntax": "tan(arg1)"
|
|
1873
|
+
},
|
|
1874
|
+
{
|
|
1875
|
+
"name": "tanh",
|
|
1876
|
+
"category": "Trigonometry",
|
|
1877
|
+
"usage": "notation",
|
|
1878
|
+
"minArgs": 1,
|
|
1879
|
+
"maxArgs": 1,
|
|
1880
|
+
"equationArgs": [],
|
|
1881
|
+
"distElWise": true,
|
|
1882
|
+
"deferArguments": false,
|
|
1883
|
+
"registrationLevel": "system",
|
|
1884
|
+
"syntax": "tanh(arg1)"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"name": "transpose",
|
|
1888
|
+
"category": "Linear algebra",
|
|
1889
|
+
"usage": "notation",
|
|
1890
|
+
"minArgs": 1,
|
|
1891
|
+
"maxArgs": 1,
|
|
1892
|
+
"equationArgs": [],
|
|
1893
|
+
"distElWise": false,
|
|
1894
|
+
"deferArguments": false,
|
|
1895
|
+
"registrationLevel": "system",
|
|
1896
|
+
"syntax": "transpose(matrix)",
|
|
1897
|
+
"summary": "Returns the transpose of a matrix.",
|
|
1898
|
+
"parameters": [
|
|
1899
|
+
{
|
|
1900
|
+
"name": "matrix",
|
|
1901
|
+
"description": "Matrix to transpose."
|
|
1902
|
+
}
|
|
1903
|
+
],
|
|
1904
|
+
"examples": [
|
|
1905
|
+
{
|
|
1906
|
+
"input": "nerdamer('transpose(matrix([1,2],[3,4]))').text()",
|
|
1907
|
+
"output": "matrix([1, 3], [2, 4])"
|
|
1908
|
+
}
|
|
1909
|
+
]
|
|
1910
|
+
},
|
|
1911
|
+
{
|
|
1912
|
+
"name": "trunc",
|
|
1913
|
+
"category": "Math",
|
|
1914
|
+
"usage": "notation",
|
|
1915
|
+
"minArgs": 1,
|
|
1916
|
+
"maxArgs": 1,
|
|
1917
|
+
"equationArgs": [],
|
|
1918
|
+
"distElWise": true,
|
|
1919
|
+
"deferArguments": false,
|
|
1920
|
+
"registrationLevel": "system",
|
|
1921
|
+
"syntax": "trunc(arg1)"
|
|
1922
|
+
},
|
|
1923
|
+
{
|
|
1924
|
+
"name": "unassign",
|
|
1925
|
+
"category": "Assumptions and sets",
|
|
1926
|
+
"usage": "notation",
|
|
1927
|
+
"minArgs": 1,
|
|
1928
|
+
"maxArgs": 1,
|
|
1929
|
+
"equationArgs": [],
|
|
1930
|
+
"distElWise": false,
|
|
1931
|
+
"deferArguments": true,
|
|
1932
|
+
"registrationLevel": "system",
|
|
1933
|
+
"syntax": "unassign(arg1)"
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"name": "while",
|
|
1937
|
+
"category": "Nerdamer Language",
|
|
1938
|
+
"usage": "scripting",
|
|
1939
|
+
"minArgs": 2,
|
|
1940
|
+
"maxArgs": 2,
|
|
1941
|
+
"equationArgs": [],
|
|
1942
|
+
"distElWise": false,
|
|
1943
|
+
"deferArguments": true,
|
|
1944
|
+
"registrationLevel": "system",
|
|
1945
|
+
"syntax": "while(arg1, arg2)"
|
|
1946
|
+
},
|
|
1947
|
+
{
|
|
1948
|
+
"name": "xor",
|
|
1949
|
+
"category": "Nerdamer Language",
|
|
1950
|
+
"usage": "scripting",
|
|
1951
|
+
"minArgs": 2,
|
|
1952
|
+
"maxArgs": -1,
|
|
1953
|
+
"equationArgs": [],
|
|
1954
|
+
"distElWise": false,
|
|
1955
|
+
"deferArguments": false,
|
|
1956
|
+
"registrationLevel": "system",
|
|
1957
|
+
"syntax": "xor(arg1, arg2, ...)"
|
|
1958
|
+
}
|
|
1959
|
+
]
|
|
1960
|
+
}
|