mathjs 9.5.2 → 10.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.
Files changed (101) hide show
  1. package/HISTORY.md +43 -1
  2. package/NOTICE +1 -1
  3. package/README.md +10 -2
  4. package/bin/cli.js +1 -1
  5. package/docs/expressions/syntax.md +1 -1
  6. package/docs/reference/constants.md +1 -1
  7. package/docs/reference/functions/invmod.md +41 -0
  8. package/docs/reference/functions.md +1 -0
  9. package/examples/expressions.js +1 -1
  10. package/lib/browser/math.js +7 -7
  11. package/lib/browser/math.js.map +1 -1
  12. package/lib/cjs/constants.js +1 -1
  13. package/lib/cjs/core/function/config.js +1 -1
  14. package/lib/cjs/core/function/import.js +2 -1
  15. package/lib/cjs/entry/dependenciesAny/dependenciesIntersect.generated.js +6 -0
  16. package/lib/cjs/entry/dependenciesAny/dependenciesInvmod.generated.js +41 -0
  17. package/lib/cjs/entry/dependenciesAny/dependenciesRationalize.generated.js +15 -0
  18. package/lib/cjs/entry/dependenciesAny/dependenciesSimplify.generated.js +15 -0
  19. package/lib/cjs/entry/dependenciesAny.generated.js +1002 -994
  20. package/lib/cjs/entry/dependenciesNumber/dependenciesRationalize.generated.js +15 -0
  21. package/lib/cjs/entry/dependenciesNumber/dependenciesSimplify.generated.js +15 -0
  22. package/lib/cjs/entry/dependenciesNumber.generated.js +581 -581
  23. package/lib/cjs/entry/impureFunctionsAny.generated.js +325 -313
  24. package/lib/cjs/entry/impureFunctionsNumber.generated.js +233 -222
  25. package/lib/cjs/entry/mainAny.js +8 -8
  26. package/lib/cjs/entry/mainNumber.js +8 -8
  27. package/lib/cjs/entry/pureFunctionsAny.generated.js +1111 -1097
  28. package/lib/cjs/entry/pureFunctionsNumber.generated.js +375 -375
  29. package/lib/cjs/entry/typeChecks.js +12 -12
  30. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +6 -1
  31. package/lib/cjs/expression/embeddedDocs/function/arithmetic/invmod.js +15 -0
  32. package/lib/cjs/expression/embeddedDocs/function/matrix/forEach.js +1 -1
  33. package/lib/cjs/expression/operators.js +1 -1
  34. package/lib/cjs/factoriesAny.js +668 -660
  35. package/lib/cjs/factoriesNumber.js +268 -237
  36. package/lib/cjs/function/algebra/rationalize.js +18 -4
  37. package/lib/cjs/function/algebra/simplify/simplifyConstant.js +223 -29
  38. package/lib/cjs/function/algebra/simplify/simplifyCore.js +34 -6
  39. package/lib/cjs/function/algebra/simplify.js +73 -22
  40. package/lib/cjs/function/arithmetic/invmod.js +73 -0
  41. package/lib/cjs/function/arithmetic/round.js +2 -2
  42. package/lib/cjs/function/geometry/intersect.js +12 -13
  43. package/lib/cjs/function/probability/gamma.js +28 -30
  44. package/lib/cjs/header.js +3 -3
  45. package/lib/cjs/plain/bignumber/arithmetic.js +2 -2
  46. package/lib/cjs/plain/number/arithmetic.js +10 -10
  47. package/lib/cjs/plain/number/constants.js +1 -1
  48. package/lib/cjs/plain/number/logical.js +1 -1
  49. package/lib/cjs/plain/number/probability.js +2 -1
  50. package/lib/cjs/plain/number/trigonometry.js +1 -1
  51. package/lib/cjs/plain/number/utils.js +1 -1
  52. package/lib/cjs/type/matrix/SparseMatrix.js +19 -15
  53. package/lib/cjs/type/unit/Unit.js +2 -2
  54. package/lib/cjs/type/unit/physicalConstants.js +1 -1
  55. package/lib/cjs/utils/array.js +14 -14
  56. package/lib/cjs/utils/bignumber/bitwise.js +1 -1
  57. package/lib/cjs/utils/customs.js +5 -5
  58. package/lib/cjs/utils/factory.js +3 -3
  59. package/lib/cjs/utils/function.js +1 -1
  60. package/lib/cjs/utils/is.js +23 -23
  61. package/lib/cjs/utils/latex.js +2 -1
  62. package/lib/cjs/utils/map.js +3 -3
  63. package/lib/cjs/utils/noop.js +1 -1
  64. package/lib/cjs/utils/number.js +11 -7
  65. package/lib/cjs/utils/object.js +8 -8
  66. package/lib/cjs/utils/snapshot.js +3 -3
  67. package/lib/cjs/utils/string.js +2 -2
  68. package/lib/cjs/version.js +1 -1
  69. package/lib/esm/core/function/import.js +2 -1
  70. package/lib/esm/entry/dependenciesAny/dependenciesIntersect.generated.js +4 -0
  71. package/lib/esm/entry/dependenciesAny/dependenciesInvmod.generated.js +24 -0
  72. package/lib/esm/entry/dependenciesAny/dependenciesRationalize.generated.js +10 -0
  73. package/lib/esm/entry/dependenciesAny/dependenciesSimplify.generated.js +10 -0
  74. package/lib/esm/entry/dependenciesAny.generated.js +271 -270
  75. package/lib/esm/entry/dependenciesNumber/dependenciesRationalize.generated.js +10 -0
  76. package/lib/esm/entry/dependenciesNumber/dependenciesSimplify.generated.js +10 -0
  77. package/lib/esm/entry/dependenciesNumber.generated.js +163 -163
  78. package/lib/esm/entry/impureFunctionsAny.generated.js +312 -301
  79. package/lib/esm/entry/impureFunctionsNumber.generated.js +221 -211
  80. package/lib/esm/entry/pureFunctionsAny.generated.js +827 -814
  81. package/lib/esm/entry/pureFunctionsNumber.generated.js +234 -234
  82. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +4 -1
  83. package/lib/esm/expression/embeddedDocs/function/arithmetic/invmod.js +8 -0
  84. package/lib/esm/expression/embeddedDocs/function/matrix/forEach.js +1 -1
  85. package/lib/esm/factoriesAny.js +1 -0
  86. package/lib/esm/function/algebra/rationalize.js +18 -4
  87. package/lib/esm/function/algebra/simplify/simplifyConstant.js +197 -29
  88. package/lib/esm/function/algebra/simplify/simplifyCore.js +35 -7
  89. package/lib/esm/function/algebra/simplify.js +73 -22
  90. package/lib/esm/function/arithmetic/invmod.js +57 -0
  91. package/lib/esm/function/arithmetic/round.js +2 -2
  92. package/lib/esm/function/geometry/intersect.js +12 -12
  93. package/lib/esm/function/probability/gamma.js +28 -30
  94. package/lib/esm/header.js +1 -1
  95. package/lib/esm/type/matrix/SparseMatrix.js +19 -15
  96. package/lib/esm/type/unit/Unit.js +2 -2
  97. package/lib/esm/utils/number.js +1 -1
  98. package/lib/esm/utils/snapshot.js +2 -2
  99. package/lib/esm/version.js +1 -1
  100. package/package.json +18 -17
  101. package/types/index.d.ts +250 -71
@@ -5,13 +5,14 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
5
5
  Object.defineProperty(exports, "__esModule", {
6
6
  value: true
7
7
  });
8
+ exports.derivative = exports.compile = exports.chain = exports.SymbolNode = exports.RelationalNode = exports.RangeNode = exports.Parser = exports.ParenthesisNode = exports.OperatorNode = exports.ObjectNode = exports.Node = exports.IndexNode = exports.Help = exports.FunctionNode = exports.FunctionAssignmentNode = exports.ConstantNode = exports.ConditionalNode = exports.Chain = exports.BlockNode = exports.AssignmentNode = exports.ArrayNode = exports.AccessorNode = void 0;
8
9
  Object.defineProperty(exports, "docs", {
9
10
  enumerable: true,
10
11
  get: function get() {
11
12
  return _embeddedDocs.embeddedDocs;
12
13
  }
13
14
  });
14
- exports.compile = exports.parser = exports.derivative = exports.help = exports.Parser = exports.rationalize = exports.simplify = exports.Help = exports.evaluate = exports.parse = exports.FunctionNode = exports.SymbolNode = exports.AssignmentNode = exports.IndexNode = exports.AccessorNode = exports.chain = exports.FunctionAssignmentNode = exports.RangeNode = exports.OperatorNode = exports.ConditionalNode = exports.reviver = exports.Chain = exports.RelationalNode = exports.ParenthesisNode = exports.ObjectNode = exports.ConstantNode = exports.BlockNode = exports.ArrayNode = exports.Node = void 0;
15
+ exports.simplify = exports.reviver = exports.rationalize = exports.parser = exports.parse = exports.help = exports.evaluate = void 0;
15
16
 
16
17
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
17
18
 
@@ -33,27 +34,22 @@ var mathWithTransform = {}; // NOT pure!
33
34
 
34
35
  var classes = {}; // NOT pure!
35
36
 
37
+ var Chain = (0, _factoriesAny.createChainClass)({
38
+ math: math
39
+ });
40
+ exports.Chain = Chain;
36
41
  var Node = (0, _factoriesAny.createNode)({
37
42
  mathWithTransform: mathWithTransform
38
43
  });
39
44
  exports.Node = Node;
40
- var ArrayNode = (0, _factoriesAny.createArrayNode)({
41
- Node: Node
42
- });
43
- exports.ArrayNode = ArrayNode;
44
- var BlockNode = (0, _factoriesAny.createBlockNode)({
45
- Node: Node,
46
- ResultSet: _pureFunctionsAnyGenerated.ResultSet
47
- });
48
- exports.BlockNode = BlockNode;
49
- var ConstantNode = (0, _factoriesAny.createConstantNode)({
50
- Node: Node
51
- });
52
- exports.ConstantNode = ConstantNode;
53
45
  var ObjectNode = (0, _factoriesAny.createObjectNode)({
54
46
  Node: Node
55
47
  });
56
48
  exports.ObjectNode = ObjectNode;
49
+ var OperatorNode = (0, _factoriesAny.createOperatorNode)({
50
+ Node: Node
51
+ });
52
+ exports.OperatorNode = OperatorNode;
57
53
  var ParenthesisNode = (0, _factoriesAny.createParenthesisNode)({
58
54
  Node: Node
59
55
  });
@@ -62,53 +58,58 @@ var RelationalNode = (0, _factoriesAny.createRelationalNode)({
62
58
  Node: Node
63
59
  });
64
60
  exports.RelationalNode = RelationalNode;
65
- var Chain = (0, _factoriesAny.createChainClass)({
66
- math: math
61
+ var ArrayNode = (0, _factoriesAny.createArrayNode)({
62
+ Node: Node
67
63
  });
68
- exports.Chain = Chain;
69
- var reviver = (0, _factoriesAny.createReviver)({
70
- classes: classes
64
+ exports.ArrayNode = ArrayNode;
65
+ var BlockNode = (0, _factoriesAny.createBlockNode)({
66
+ Node: Node,
67
+ ResultSet: _pureFunctionsAnyGenerated.ResultSet
71
68
  });
72
- exports.reviver = reviver;
69
+ exports.BlockNode = BlockNode;
73
70
  var ConditionalNode = (0, _factoriesAny.createConditionalNode)({
74
71
  Node: Node
75
72
  });
76
73
  exports.ConditionalNode = ConditionalNode;
77
- var OperatorNode = (0, _factoriesAny.createOperatorNode)({
74
+ var ConstantNode = (0, _factoriesAny.createConstantNode)({
78
75
  Node: Node
79
76
  });
80
- exports.OperatorNode = OperatorNode;
77
+ exports.ConstantNode = ConstantNode;
81
78
  var RangeNode = (0, _factoriesAny.createRangeNode)({
82
79
  Node: Node
83
80
  });
84
81
  exports.RangeNode = RangeNode;
85
- var FunctionAssignmentNode = (0, _factoriesAny.createFunctionAssignmentNode)({
86
- Node: Node,
87
- typed: _pureFunctionsAnyGenerated.typed
82
+ var reviver = (0, _factoriesAny.createReviver)({
83
+ classes: classes
88
84
  });
89
- exports.FunctionAssignmentNode = FunctionAssignmentNode;
85
+ exports.reviver = reviver;
90
86
  var chain = (0, _factoriesAny.createChain)({
91
87
  Chain: Chain,
92
88
  typed: _pureFunctionsAnyGenerated.typed
93
89
  });
94
90
  exports.chain = chain;
91
+ var FunctionAssignmentNode = (0, _factoriesAny.createFunctionAssignmentNode)({
92
+ Node: Node,
93
+ typed: _pureFunctionsAnyGenerated.typed
94
+ });
95
+ exports.FunctionAssignmentNode = FunctionAssignmentNode;
95
96
  var AccessorNode = (0, _factoriesAny.createAccessorNode)({
96
97
  Node: Node,
97
98
  subset: _pureFunctionsAnyGenerated.subset
98
99
  });
99
100
  exports.AccessorNode = AccessorNode;
100
- var IndexNode = (0, _factoriesAny.createIndexNode)({
101
- Node: Node,
102
- Range: _pureFunctionsAnyGenerated.Range,
103
- size: _pureFunctionsAnyGenerated.size
104
- });
105
- exports.IndexNode = IndexNode;
106
101
  var AssignmentNode = (0, _factoriesAny.createAssignmentNode)({
107
102
  matrix: _pureFunctionsAnyGenerated.matrix,
108
103
  Node: Node,
109
104
  subset: _pureFunctionsAnyGenerated.subset
110
105
  });
111
106
  exports.AssignmentNode = AssignmentNode;
107
+ var IndexNode = (0, _factoriesAny.createIndexNode)({
108
+ Node: Node,
109
+ Range: _pureFunctionsAnyGenerated.Range,
110
+ size: _pureFunctionsAnyGenerated.size
111
+ });
112
+ exports.IndexNode = IndexNode;
112
113
  var SymbolNode = (0, _factoriesAny.createSymbolNode)({
113
114
  Unit: _pureFunctionsAnyGenerated.Unit,
114
115
  Node: Node,
@@ -142,6 +143,11 @@ var parse = (0, _factoriesAny.createParse)({
142
143
  typed: _pureFunctionsAnyGenerated.typed
143
144
  });
144
145
  exports.parse = parse;
146
+ var compile = (0, _factoriesAny.createCompile)({
147
+ parse: parse,
148
+ typed: _pureFunctionsAnyGenerated.typed
149
+ });
150
+ exports.compile = compile;
145
151
  var evaluate = (0, _factoriesAny.createEvaluate)({
146
152
  parse: parse,
147
153
  typed: _pureFunctionsAnyGenerated.typed
@@ -151,11 +157,24 @@ var Help = (0, _factoriesAny.createHelpClass)({
151
157
  parse: parse
152
158
  });
153
159
  exports.Help = Help;
160
+ var Parser = (0, _factoriesAny.createParserClass)({
161
+ evaluate: evaluate
162
+ });
163
+ exports.Parser = Parser;
164
+ var parser = (0, _factoriesAny.createParser)({
165
+ Parser: Parser,
166
+ typed: _pureFunctionsAnyGenerated.typed
167
+ });
168
+ exports.parser = parser;
154
169
  var simplify = (0, _factoriesAny.createSimplify)({
155
170
  bignumber: _pureFunctionsAnyGenerated.bignumber,
156
171
  fraction: _pureFunctionsAnyGenerated.fraction,
172
+ AccessorNode: AccessorNode,
173
+ ArrayNode: ArrayNode,
157
174
  ConstantNode: ConstantNode,
158
175
  FunctionNode: FunctionNode,
176
+ IndexNode: IndexNode,
177
+ ObjectNode: ObjectNode,
159
178
  OperatorNode: OperatorNode,
160
179
  ParenthesisNode: ParenthesisNode,
161
180
  SymbolNode: SymbolNode,
@@ -165,6 +184,7 @@ var simplify = (0, _factoriesAny.createSimplify)({
165
184
  equal: _pureFunctionsAnyGenerated.equal,
166
185
  isZero: _pureFunctionsAnyGenerated.isZero,
167
186
  mathWithTransform: mathWithTransform,
187
+ matrix: _pureFunctionsAnyGenerated.matrix,
168
188
  multiply: _pureFunctionsAnyGenerated.multiply,
169
189
  parse: parse,
170
190
  pow: _pureFunctionsAnyGenerated.pow,
@@ -172,371 +192,370 @@ var simplify = (0, _factoriesAny.createSimplify)({
172
192
  typed: _pureFunctionsAnyGenerated.typed
173
193
  });
174
194
  exports.simplify = simplify;
175
- var rationalize = (0, _factoriesAny.createRationalize)({
176
- bignumber: _pureFunctionsAnyGenerated.bignumber,
177
- fraction: _pureFunctionsAnyGenerated.fraction,
195
+ var derivative = (0, _factoriesAny.createDerivative)({
178
196
  ConstantNode: ConstantNode,
179
197
  FunctionNode: FunctionNode,
180
198
  OperatorNode: OperatorNode,
181
199
  ParenthesisNode: ParenthesisNode,
182
200
  SymbolNode: SymbolNode,
183
- add: _pureFunctionsAnyGenerated.add,
184
201
  config: _configReadonly.config,
185
- divide: _pureFunctionsAnyGenerated.divide,
186
202
  equal: _pureFunctionsAnyGenerated.equal,
187
203
  isZero: _pureFunctionsAnyGenerated.isZero,
188
- mathWithTransform: mathWithTransform,
189
- multiply: _pureFunctionsAnyGenerated.multiply,
204
+ numeric: _pureFunctionsAnyGenerated.numeric,
190
205
  parse: parse,
191
- pow: _pureFunctionsAnyGenerated.pow,
192
206
  simplify: simplify,
193
- subtract: _pureFunctionsAnyGenerated.subtract,
194
207
  typed: _pureFunctionsAnyGenerated.typed
195
208
  });
196
- exports.rationalize = rationalize;
197
- var Parser = (0, _factoriesAny.createParserClass)({
198
- evaluate: evaluate
199
- });
200
- exports.Parser = Parser;
209
+ exports.derivative = derivative;
201
210
  var help = (0, _factoriesAny.createHelp)({
202
211
  Help: Help,
203
212
  mathWithTransform: mathWithTransform,
204
213
  typed: _pureFunctionsAnyGenerated.typed
205
214
  });
206
215
  exports.help = help;
207
- var derivative = (0, _factoriesAny.createDerivative)({
216
+ var rationalize = (0, _factoriesAny.createRationalize)({
217
+ bignumber: _pureFunctionsAnyGenerated.bignumber,
218
+ fraction: _pureFunctionsAnyGenerated.fraction,
219
+ AccessorNode: AccessorNode,
220
+ ArrayNode: ArrayNode,
208
221
  ConstantNode: ConstantNode,
209
222
  FunctionNode: FunctionNode,
223
+ IndexNode: IndexNode,
224
+ ObjectNode: ObjectNode,
210
225
  OperatorNode: OperatorNode,
211
226
  ParenthesisNode: ParenthesisNode,
212
227
  SymbolNode: SymbolNode,
228
+ add: _pureFunctionsAnyGenerated.add,
213
229
  config: _configReadonly.config,
230
+ divide: _pureFunctionsAnyGenerated.divide,
214
231
  equal: _pureFunctionsAnyGenerated.equal,
215
232
  isZero: _pureFunctionsAnyGenerated.isZero,
216
- numeric: _pureFunctionsAnyGenerated.numeric,
233
+ mathWithTransform: mathWithTransform,
234
+ matrix: _pureFunctionsAnyGenerated.matrix,
235
+ multiply: _pureFunctionsAnyGenerated.multiply,
217
236
  parse: parse,
237
+ pow: _pureFunctionsAnyGenerated.pow,
218
238
  simplify: simplify,
239
+ subtract: _pureFunctionsAnyGenerated.subtract,
219
240
  typed: _pureFunctionsAnyGenerated.typed
220
241
  });
221
- exports.derivative = derivative;
222
- var parser = (0, _factoriesAny.createParser)({
223
- Parser: Parser,
224
- typed: _pureFunctionsAnyGenerated.typed
225
- });
226
- exports.parser = parser;
227
- var compile = (0, _factoriesAny.createCompile)({
228
- parse: parse,
229
- typed: _pureFunctionsAnyGenerated.typed
230
- });
231
- exports.compile = compile;
242
+ exports.rationalize = rationalize;
232
243
  (0, _extends2["default"])(math, {
233
- reviver: reviver,
244
+ e: _pureFunctionsAnyGenerated.e,
234
245
  "false": _pureFunctionsAnyGenerated._false,
235
- "null": _pureFunctionsAnyGenerated._null,
236
- "true": _pureFunctionsAnyGenerated._true,
237
- replacer: _pureFunctionsAnyGenerated.replacer,
246
+ fineStructure: _pureFunctionsAnyGenerated.fineStructure,
238
247
  i: _pureFunctionsAnyGenerated.i,
248
+ Infinity: _pureFunctionsAnyGenerated._Infinity,
239
249
  LN10: _pureFunctionsAnyGenerated.LN10,
240
250
  LOG10E: _pureFunctionsAnyGenerated.LOG10E,
241
251
  NaN: _pureFunctionsAnyGenerated._NaN,
242
- pi: _pureFunctionsAnyGenerated.pi,
252
+ "null": _pureFunctionsAnyGenerated._null,
253
+ phi: _pureFunctionsAnyGenerated.phi,
243
254
  SQRT1_2: _pureFunctionsAnyGenerated.SQRT1_2,
244
- tau: _pureFunctionsAnyGenerated.tau,
245
- efimovFactor: _pureFunctionsAnyGenerated.efimovFactor,
246
- fineStructure: _pureFunctionsAnyGenerated.fineStructure,
247
255
  sackurTetrode: _pureFunctionsAnyGenerated.sackurTetrode,
248
- weakMixingAngle: _pureFunctionsAnyGenerated.weakMixingAngle,
249
- e: _pureFunctionsAnyGenerated.e,
250
- Infinity: _pureFunctionsAnyGenerated._Infinity,
251
- LOG2E: _pureFunctionsAnyGenerated.LOG2E,
252
- 'PI': _pureFunctionsAnyGenerated.pi,
253
- version: _pureFunctionsAnyGenerated.version,
256
+ tau: _pureFunctionsAnyGenerated.tau,
257
+ "true": _pureFunctionsAnyGenerated._true,
254
258
  'E': _pureFunctionsAnyGenerated.e,
255
- phi: _pureFunctionsAnyGenerated.phi,
259
+ version: _pureFunctionsAnyGenerated.version,
260
+ efimovFactor: _pureFunctionsAnyGenerated.efimovFactor,
261
+ LN2: _pureFunctionsAnyGenerated.LN2,
262
+ pi: _pureFunctionsAnyGenerated.pi,
263
+ replacer: _pureFunctionsAnyGenerated.replacer,
264
+ reviver: reviver,
265
+ SQRT2: _pureFunctionsAnyGenerated.SQRT2,
256
266
  typed: _pureFunctionsAnyGenerated.typed,
257
- isInteger: _pureFunctionsAnyGenerated.isInteger,
258
- isNumeric: _pureFunctionsAnyGenerated.isNumeric,
259
- isPositive: _pureFunctionsAnyGenerated.isPositive,
260
- isNaN: _pureFunctionsAnyGenerated.isNaN,
261
- equalScalar: _pureFunctionsAnyGenerated.equalScalar,
262
- number: _pureFunctionsAnyGenerated.number,
267
+ unaryPlus: _pureFunctionsAnyGenerated.unaryPlus,
268
+ 'PI': _pureFunctionsAnyGenerated.pi,
269
+ weakMixingAngle: _pureFunctionsAnyGenerated.weakMixingAngle,
270
+ abs: _pureFunctionsAnyGenerated.abs,
271
+ acos: _pureFunctionsAnyGenerated.acos,
272
+ acot: _pureFunctionsAnyGenerated.acot,
273
+ acsc: _pureFunctionsAnyGenerated.acsc,
274
+ addScalar: _pureFunctionsAnyGenerated.addScalar,
275
+ arg: _pureFunctionsAnyGenerated.arg,
276
+ asech: _pureFunctionsAnyGenerated.asech,
277
+ asinh: _pureFunctionsAnyGenerated.asinh,
278
+ atan: _pureFunctionsAnyGenerated.atan,
279
+ atanh: _pureFunctionsAnyGenerated.atanh,
280
+ bignumber: _pureFunctionsAnyGenerated.bignumber,
281
+ bitNot: _pureFunctionsAnyGenerated.bitNot,
263
282
  "boolean": _pureFunctionsAnyGenerated["boolean"],
283
+ chain: chain,
284
+ clone: _pureFunctionsAnyGenerated.clone,
285
+ combinations: _pureFunctionsAnyGenerated.combinations,
264
286
  complex: _pureFunctionsAnyGenerated.complex,
265
- splitUnit: _pureFunctionsAnyGenerated.splitUnit,
266
- unaryPlus: _pureFunctionsAnyGenerated.unaryPlus,
267
- apply: _pureFunctionsAnyGenerated.apply,
287
+ conj: _pureFunctionsAnyGenerated.conj,
288
+ cosh: _pureFunctionsAnyGenerated.cosh,
289
+ coth: _pureFunctionsAnyGenerated.coth,
290
+ csc: _pureFunctionsAnyGenerated.csc,
268
291
  cube: _pureFunctionsAnyGenerated.cube,
292
+ equalScalar: _pureFunctionsAnyGenerated.equalScalar,
293
+ erf: _pureFunctionsAnyGenerated.erf,
294
+ exp: _pureFunctionsAnyGenerated.exp,
269
295
  expm1: _pureFunctionsAnyGenerated.expm1,
270
- log10: _pureFunctionsAnyGenerated.log10,
271
- multiplyScalar: _pureFunctionsAnyGenerated.multiplyScalar,
272
- sign: _pureFunctionsAnyGenerated.sign,
273
- square: _pureFunctionsAnyGenerated.square,
274
- bitNot: _pureFunctionsAnyGenerated.bitNot,
275
- arg: _pureFunctionsAnyGenerated.arg,
276
- im: _pureFunctionsAnyGenerated.im,
277
- not: _pureFunctionsAnyGenerated.not,
278
296
  filter: _pureFunctionsAnyGenerated.filter,
279
297
  forEach: _pureFunctionsAnyGenerated.forEach,
280
- map: _pureFunctionsAnyGenerated.map,
281
- erf: _pureFunctionsAnyGenerated.erf,
282
298
  format: _pureFunctionsAnyGenerated.format,
299
+ getMatrixDataType: _pureFunctionsAnyGenerated.getMatrixDataType,
300
+ hex: _pureFunctionsAnyGenerated.hex,
301
+ im: _pureFunctionsAnyGenerated.im,
302
+ isInteger: _pureFunctionsAnyGenerated.isInteger,
303
+ isNegative: _pureFunctionsAnyGenerated.isNegative,
304
+ isPositive: _pureFunctionsAnyGenerated.isPositive,
305
+ isZero: _pureFunctionsAnyGenerated.isZero,
306
+ LOG2E: _pureFunctionsAnyGenerated.LOG2E,
307
+ log10: _pureFunctionsAnyGenerated.log10,
308
+ log2: _pureFunctionsAnyGenerated.log2,
309
+ map: _pureFunctionsAnyGenerated.map,
310
+ multiplyScalar: _pureFunctionsAnyGenerated.multiplyScalar,
311
+ not: _pureFunctionsAnyGenerated.not,
312
+ number: _pureFunctionsAnyGenerated.number,
283
313
  oct: _pureFunctionsAnyGenerated.oct,
314
+ pickRandom: _pureFunctionsAnyGenerated.pickRandom,
284
315
  print: _pureFunctionsAnyGenerated.print,
285
- isPrime: _pureFunctionsAnyGenerated.isPrime,
286
- acos: _pureFunctionsAnyGenerated.acos,
287
- acot: _pureFunctionsAnyGenerated.acot,
288
- acsc: _pureFunctionsAnyGenerated.acsc,
316
+ random: _pureFunctionsAnyGenerated.random,
317
+ re: _pureFunctionsAnyGenerated.re,
318
+ sec: _pureFunctionsAnyGenerated.sec,
319
+ sign: _pureFunctionsAnyGenerated.sign,
320
+ sin: _pureFunctionsAnyGenerated.sin,
321
+ splitUnit: _pureFunctionsAnyGenerated.splitUnit,
322
+ square: _pureFunctionsAnyGenerated.square,
323
+ string: _pureFunctionsAnyGenerated.string,
324
+ tan: _pureFunctionsAnyGenerated.tan,
325
+ typeOf: _pureFunctionsAnyGenerated.typeOf,
326
+ acosh: _pureFunctionsAnyGenerated.acosh,
327
+ acsch: _pureFunctionsAnyGenerated.acsch,
328
+ apply: _pureFunctionsAnyGenerated.apply,
289
329
  asec: _pureFunctionsAnyGenerated.asec,
290
- asin: _pureFunctionsAnyGenerated.asin,
291
- atan: _pureFunctionsAnyGenerated.atan,
292
- atanh: _pureFunctionsAnyGenerated.atanh,
293
- cosh: _pureFunctionsAnyGenerated.cosh,
294
- coth: _pureFunctionsAnyGenerated.coth,
330
+ bin: _pureFunctionsAnyGenerated.bin,
331
+ combinationsWithRep: _pureFunctionsAnyGenerated.combinationsWithRep,
332
+ cos: _pureFunctionsAnyGenerated.cos,
295
333
  csch: _pureFunctionsAnyGenerated.csch,
334
+ isNaN: _pureFunctionsAnyGenerated.isNaN,
335
+ isPrime: _pureFunctionsAnyGenerated.isPrime,
336
+ randomInt: _pureFunctionsAnyGenerated.randomInt,
296
337
  sech: _pureFunctionsAnyGenerated.sech,
297
338
  sinh: _pureFunctionsAnyGenerated.sinh,
339
+ sparse: _pureFunctionsAnyGenerated.sparse,
340
+ sqrt: _pureFunctionsAnyGenerated.sqrt,
298
341
  tanh: _pureFunctionsAnyGenerated.tanh,
299
- chain: chain,
300
- combinations: _pureFunctionsAnyGenerated.combinations,
301
- pickRandom: _pureFunctionsAnyGenerated.pickRandom,
302
- randomInt: _pureFunctionsAnyGenerated.randomInt,
303
- LN2: _pureFunctionsAnyGenerated.LN2,
304
- clone: _pureFunctionsAnyGenerated.clone,
305
- hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
306
- typeOf: _pureFunctionsAnyGenerated.typeOf,
307
- string: _pureFunctionsAnyGenerated.string,
308
- fraction: _pureFunctionsAnyGenerated.fraction,
309
342
  unaryMinus: _pureFunctionsAnyGenerated.unaryMinus,
310
- addScalar: _pureFunctionsAnyGenerated.addScalar,
311
- exp: _pureFunctionsAnyGenerated.exp,
312
- log2: _pureFunctionsAnyGenerated.log2,
313
- sqrt: _pureFunctionsAnyGenerated.sqrt,
314
- conj: _pureFunctionsAnyGenerated.conj,
315
- getMatrixDataType: _pureFunctionsAnyGenerated.getMatrixDataType,
316
- mode: _pureFunctionsAnyGenerated.mode,
317
- bin: _pureFunctionsAnyGenerated.bin,
318
- acosh: _pureFunctionsAnyGenerated.acosh,
319
- acsch: _pureFunctionsAnyGenerated.acsch,
320
- asinh: _pureFunctionsAnyGenerated.asinh,
321
- cos: _pureFunctionsAnyGenerated.cos,
322
- csc: _pureFunctionsAnyGenerated.csc,
323
- sin: _pureFunctionsAnyGenerated.sin,
324
- combinationsWithRep: _pureFunctionsAnyGenerated.combinationsWithRep,
325
- random: _pureFunctionsAnyGenerated.random,
326
- SQRT2: _pureFunctionsAnyGenerated.SQRT2,
327
- isNegative: _pureFunctionsAnyGenerated.isNegative,
343
+ acoth: _pureFunctionsAnyGenerated.acoth,
344
+ cot: _pureFunctionsAnyGenerated.cot,
345
+ fraction: _pureFunctionsAnyGenerated.fraction,
346
+ isNumeric: _pureFunctionsAnyGenerated.isNumeric,
328
347
  matrix: _pureFunctionsAnyGenerated.matrix,
329
- abs: _pureFunctionsAnyGenerated.abs,
330
- gcd: _pureFunctionsAnyGenerated.gcd,
348
+ matrixFromFunction: _pureFunctionsAnyGenerated.matrixFromFunction,
331
349
  mod: _pureFunctionsAnyGenerated.mod,
332
350
  nthRoot: _pureFunctionsAnyGenerated.nthRoot,
333
- xgcd: _pureFunctionsAnyGenerated.xgcd,
334
- bitAnd: _pureFunctionsAnyGenerated.bitAnd,
335
- bitXor: _pureFunctionsAnyGenerated.bitXor,
351
+ numeric: _pureFunctionsAnyGenerated.numeric,
336
352
  or: _pureFunctionsAnyGenerated.or,
337
- concat: _pureFunctionsAnyGenerated.concat,
338
- diag: _pureFunctionsAnyGenerated.diag,
339
- identity: _pureFunctionsAnyGenerated.identity,
340
- ones: _pureFunctionsAnyGenerated.ones,
353
+ prod: _pureFunctionsAnyGenerated.prod,
341
354
  reshape: _pureFunctionsAnyGenerated.reshape,
342
355
  size: _pureFunctionsAnyGenerated.size,
356
+ smaller: _pureFunctionsAnyGenerated.smaller,
357
+ squeeze: _pureFunctionsAnyGenerated.squeeze,
343
358
  subset: _pureFunctionsAnyGenerated.subset,
359
+ subtract: _pureFunctionsAnyGenerated.subtract,
360
+ to: _pureFunctionsAnyGenerated.to,
361
+ transpose: _pureFunctionsAnyGenerated.transpose,
362
+ xgcd: _pureFunctionsAnyGenerated.xgcd,
344
363
  zeros: _pureFunctionsAnyGenerated.zeros,
345
- hex: _pureFunctionsAnyGenerated.hex,
346
- round: _pureFunctionsAnyGenerated.round,
347
- leftShift: _pureFunctionsAnyGenerated.leftShift,
348
- rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
364
+ and: _pureFunctionsAnyGenerated.and,
365
+ bitAnd: _pureFunctionsAnyGenerated.bitAnd,
366
+ bitXor: _pureFunctionsAnyGenerated.bitXor,
367
+ cbrt: _pureFunctionsAnyGenerated.cbrt,
349
368
  compare: _pureFunctionsAnyGenerated.compare,
350
369
  compareText: _pureFunctionsAnyGenerated.compareText,
351
- smaller: _pureFunctionsAnyGenerated.smaller,
352
- larger: _pureFunctionsAnyGenerated.larger,
370
+ concat: _pureFunctionsAnyGenerated.concat,
371
+ count: _pureFunctionsAnyGenerated.count,
372
+ ctranspose: _pureFunctionsAnyGenerated.ctranspose,
373
+ diag: _pureFunctionsAnyGenerated.diag,
374
+ divideScalar: _pureFunctionsAnyGenerated.divideScalar,
375
+ dotDivide: _pureFunctionsAnyGenerated.dotDivide,
376
+ equal: _pureFunctionsAnyGenerated.equal,
377
+ flatten: _pureFunctionsAnyGenerated.flatten,
378
+ gcd: _pureFunctionsAnyGenerated.gcd,
379
+ hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
380
+ hypot: _pureFunctionsAnyGenerated.hypot,
381
+ kron: _pureFunctionsAnyGenerated.kron,
382
+ largerEq: _pureFunctionsAnyGenerated.largerEq,
383
+ leftShift: _pureFunctionsAnyGenerated.leftShift,
384
+ lsolve: _pureFunctionsAnyGenerated.lsolve,
385
+ matrixFromColumns: _pureFunctionsAnyGenerated.matrixFromColumns,
386
+ min: _pureFunctionsAnyGenerated.min,
387
+ mode: _pureFunctionsAnyGenerated.mode,
388
+ nthRoots: _pureFunctionsAnyGenerated.nthRoots,
389
+ ones: _pureFunctionsAnyGenerated.ones,
390
+ partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
391
+ resize: _pureFunctionsAnyGenerated.resize,
392
+ rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
393
+ round: _pureFunctionsAnyGenerated.round,
394
+ smallerEq: _pureFunctionsAnyGenerated.smallerEq,
353
395
  unequal: _pureFunctionsAnyGenerated.unequal,
354
- sparse: _pureFunctionsAnyGenerated.sparse,
355
- acoth: _pureFunctionsAnyGenerated.acoth,
356
- atan2: _pureFunctionsAnyGenerated.atan2,
357
- sec: _pureFunctionsAnyGenerated.sec,
396
+ usolve: _pureFunctionsAnyGenerated.usolve,
397
+ xor: _pureFunctionsAnyGenerated.xor,
358
398
  add: _pureFunctionsAnyGenerated.add,
399
+ atan2: _pureFunctionsAnyGenerated.atan2,
400
+ bitOr: _pureFunctionsAnyGenerated.bitOr,
401
+ catalan: _pureFunctionsAnyGenerated.catalan,
402
+ compareNatural: _pureFunctionsAnyGenerated.compareNatural,
403
+ deepEqual: _pureFunctionsAnyGenerated.deepEqual,
404
+ diff: _pureFunctionsAnyGenerated.diff,
359
405
  dot: _pureFunctionsAnyGenerated.dot,
360
- composition: _pureFunctionsAnyGenerated.composition,
361
- isZero: _pureFunctionsAnyGenerated.isZero,
362
- matrixFromFunction: _pureFunctionsAnyGenerated.matrixFromFunction,
363
- cbrt: _pureFunctionsAnyGenerated.cbrt,
406
+ equalText: _pureFunctionsAnyGenerated.equalText,
364
407
  floor: _pureFunctionsAnyGenerated.floor,
408
+ identity: _pureFunctionsAnyGenerated.identity,
409
+ invmod: _pureFunctionsAnyGenerated.invmod,
410
+ larger: _pureFunctionsAnyGenerated.larger,
411
+ log: _pureFunctionsAnyGenerated.log,
412
+ lsolveAll: _pureFunctionsAnyGenerated.lsolveAll,
413
+ matrixFromRows: _pureFunctionsAnyGenerated.matrixFromRows,
365
414
  multiply: _pureFunctionsAnyGenerated.multiply,
366
- dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
367
- re: _pureFunctionsAnyGenerated.re,
368
- flatten: _pureFunctionsAnyGenerated.flatten,
369
- resize: _pureFunctionsAnyGenerated.resize,
370
- squeeze: _pureFunctionsAnyGenerated.squeeze,
371
- to: _pureFunctionsAnyGenerated.to,
372
415
  pow: _pureFunctionsAnyGenerated.pow,
373
- dotPow: _pureFunctionsAnyGenerated.dotPow,
416
+ qr: _pureFunctionsAnyGenerated.qr,
417
+ range: _pureFunctionsAnyGenerated.range,
374
418
  rightArithShift: _pureFunctionsAnyGenerated.rightArithShift,
375
- compareNatural: _pureFunctionsAnyGenerated.compareNatural,
376
- equalText: _pureFunctionsAnyGenerated.equalText,
377
- largerEq: _pureFunctionsAnyGenerated.largerEq,
378
- partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
379
- asech: _pureFunctionsAnyGenerated.asech,
380
- tan: _pureFunctionsAnyGenerated.tan,
381
- setDifference: _pureFunctionsAnyGenerated.setDifference,
382
- setIntersect: _pureFunctionsAnyGenerated.setIntersect,
383
- setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
384
- setSize: _pureFunctionsAnyGenerated.setSize,
385
- trace: _pureFunctionsAnyGenerated.trace,
386
- quantileSeq: _pureFunctionsAnyGenerated.quantileSeq,
387
- gamma: _pureFunctionsAnyGenerated.gamma,
388
- bignumber: _pureFunctionsAnyGenerated.bignumber,
389
- matrixFromColumns: _pureFunctionsAnyGenerated.matrixFromColumns,
390
- lcm: _pureFunctionsAnyGenerated.lcm,
391
- bitOr: _pureFunctionsAnyGenerated.bitOr,
392
- kron: _pureFunctionsAnyGenerated.kron,
393
- transpose: _pureFunctionsAnyGenerated.transpose,
394
- numeric: _pureFunctionsAnyGenerated.numeric,
395
- and: _pureFunctionsAnyGenerated.and,
396
- smallerEq: _pureFunctionsAnyGenerated.smallerEq,
397
- sort: _pureFunctionsAnyGenerated.sort,
398
- min: _pureFunctionsAnyGenerated.min,
399
- cot: _pureFunctionsAnyGenerated.cot,
419
+ row: _pureFunctionsAnyGenerated.row,
420
+ setCartesian: _pureFunctionsAnyGenerated.setCartesian,
400
421
  setDistinct: _pureFunctionsAnyGenerated.setDistinct,
422
+ setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
401
423
  setPowerset: _pureFunctionsAnyGenerated.setPowerset,
402
- index: _pureFunctionsAnyGenerated.index,
424
+ slu: _pureFunctionsAnyGenerated.slu,
403
425
  sum: _pureFunctionsAnyGenerated.sum,
404
- factorial: _pureFunctionsAnyGenerated.factorial,
405
- permutations: _pureFunctionsAnyGenerated.permutations,
406
- matrixFromRows: _pureFunctionsAnyGenerated.matrixFromRows,
407
- subtract: _pureFunctionsAnyGenerated.subtract,
426
+ trace: _pureFunctionsAnyGenerated.trace,
427
+ usolveAll: _pureFunctionsAnyGenerated.usolveAll,
428
+ asin: _pureFunctionsAnyGenerated.asin,
429
+ ceil: _pureFunctionsAnyGenerated.ceil,
430
+ column: _pureFunctionsAnyGenerated.column,
431
+ composition: _pureFunctionsAnyGenerated.composition,
408
432
  cross: _pureFunctionsAnyGenerated.cross,
409
- range: _pureFunctionsAnyGenerated.range,
410
- row: _pureFunctionsAnyGenerated.row,
411
- prod: _pureFunctionsAnyGenerated.prod,
412
- equal: _pureFunctionsAnyGenerated.equal,
433
+ distance: _pureFunctionsAnyGenerated.distance,
434
+ dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
435
+ fix: _pureFunctionsAnyGenerated.fix,
436
+ gamma: _pureFunctionsAnyGenerated.gamma,
437
+ index: _pureFunctionsAnyGenerated.index,
438
+ lcm: _pureFunctionsAnyGenerated.lcm,
413
439
  max: _pureFunctionsAnyGenerated.max,
414
- setCartesian: _pureFunctionsAnyGenerated.setCartesian,
440
+ quantileSeq: _pureFunctionsAnyGenerated.quantileSeq,
441
+ setDifference: _pureFunctionsAnyGenerated.setDifference,
442
+ setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
415
443
  setSymDifference: _pureFunctionsAnyGenerated.setSymDifference,
416
- ceil: _pureFunctionsAnyGenerated.ceil,
417
- xor: _pureFunctionsAnyGenerated.xor,
418
- count: _pureFunctionsAnyGenerated.count,
419
- ctranspose: _pureFunctionsAnyGenerated.ctranspose,
420
- deepEqual: _pureFunctionsAnyGenerated.deepEqual,
421
- setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
422
- fix: _pureFunctionsAnyGenerated.fix,
423
- diff: _pureFunctionsAnyGenerated.diff,
424
- divideScalar: _pureFunctionsAnyGenerated.divideScalar,
425
- nthRoots: _pureFunctionsAnyGenerated.nthRoots,
426
- lsolve: _pureFunctionsAnyGenerated.lsolve,
427
- lsolveAll: _pureFunctionsAnyGenerated.lsolveAll,
428
- setUnion: _pureFunctionsAnyGenerated.setUnion,
429
- lup: _pureFunctionsAnyGenerated.lup,
430
- slu: _pureFunctionsAnyGenerated.slu,
431
- det: _pureFunctionsAnyGenerated.det,
432
- distance: _pureFunctionsAnyGenerated.distance,
433
- stirlingS2: _pureFunctionsAnyGenerated.stirlingS2,
434
- catalan: _pureFunctionsAnyGenerated.catalan,
435
- column: _pureFunctionsAnyGenerated.column,
436
- log: _pureFunctionsAnyGenerated.log,
437
- dotDivide: _pureFunctionsAnyGenerated.dotDivide,
438
- usolveAll: _pureFunctionsAnyGenerated.usolveAll,
439
- hypot: _pureFunctionsAnyGenerated.hypot,
440
- qr: _pureFunctionsAnyGenerated.qr,
441
- inv: _pureFunctionsAnyGenerated.inv,
442
- expm: _pureFunctionsAnyGenerated.expm,
443
- divide: _pureFunctionsAnyGenerated.divide,
444
- mean: _pureFunctionsAnyGenerated.mean,
445
- variance: _pureFunctionsAnyGenerated.variance,
446
- kldivergence: _pureFunctionsAnyGenerated.kldivergence,
447
- bellNumbers: _pureFunctionsAnyGenerated.bellNumbers,
448
- log1p: _pureFunctionsAnyGenerated.log1p,
449
- createUnit: _pureFunctionsAnyGenerated.createUnit,
450
- sqrtm: _pureFunctionsAnyGenerated.sqrtm,
451
- median: _pureFunctionsAnyGenerated.median,
452
- std: _pureFunctionsAnyGenerated.std,
444
+ sort: _pureFunctionsAnyGenerated.sort,
445
+ vacuumImpedance: _pureFunctionsAnyGenerated.vacuumImpedance,
446
+ wienDisplacement: _pureFunctionsAnyGenerated.wienDisplacement,
453
447
  atomicMass: _pureFunctionsAnyGenerated.atomicMass,
454
448
  bohrMagneton: _pureFunctionsAnyGenerated.bohrMagneton,
455
449
  boltzmann: _pureFunctionsAnyGenerated.boltzmann,
456
450
  conductanceQuantum: _pureFunctionsAnyGenerated.conductanceQuantum,
451
+ createUnit: _pureFunctionsAnyGenerated.createUnit,
457
452
  deuteronMass: _pureFunctionsAnyGenerated.deuteronMass,
458
- electronMass: _pureFunctionsAnyGenerated.electronMass,
459
- faraday: _pureFunctionsAnyGenerated.faraday,
460
- firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
461
- gravitationConstant: _pureFunctionsAnyGenerated.gravitationConstant,
462
- hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
453
+ dotPow: _pureFunctionsAnyGenerated.dotPow,
454
+ electricConstant: _pureFunctionsAnyGenerated.electricConstant,
455
+ elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
456
+ factorial: _pureFunctionsAnyGenerated.factorial,
457
+ fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
458
+ gasConstant: _pureFunctionsAnyGenerated.gasConstant,
459
+ gravity: _pureFunctionsAnyGenerated.gravity,
460
+ intersect: _pureFunctionsAnyGenerated.intersect,
461
+ inverseConductanceQuantum: _pureFunctionsAnyGenerated.inverseConductanceQuantum,
463
462
  klitzing: _pureFunctionsAnyGenerated.klitzing,
463
+ loschmidt: _pureFunctionsAnyGenerated.loschmidt,
464
464
  magneticConstant: _pureFunctionsAnyGenerated.magneticConstant,
465
465
  molarMass: _pureFunctionsAnyGenerated.molarMass,
466
466
  molarPlanckConstant: _pureFunctionsAnyGenerated.molarPlanckConstant,
467
467
  neutronMass: _pureFunctionsAnyGenerated.neutronMass,
468
- planckCharge: _pureFunctionsAnyGenerated.planckCharge,
469
- planckLength: _pureFunctionsAnyGenerated.planckLength,
470
- planckTemperature: _pureFunctionsAnyGenerated.planckTemperature,
471
- protonMass: _pureFunctionsAnyGenerated.protonMass,
472
- reducedPlanckConstant: _pureFunctionsAnyGenerated.reducedPlanckConstant,
473
- secondRadiation: _pureFunctionsAnyGenerated.secondRadiation,
474
- stefanBoltzmann: _pureFunctionsAnyGenerated.stefanBoltzmann,
475
- vacuumImpedance: _pureFunctionsAnyGenerated.vacuumImpedance,
476
- usolve: _pureFunctionsAnyGenerated.usolve,
477
- lusolve: _pureFunctionsAnyGenerated.lusolve,
478
- eigs: _pureFunctionsAnyGenerated.eigs,
479
- mad: _pureFunctionsAnyGenerated.mad,
480
- avogadro: _pureFunctionsAnyGenerated.avogadro,
481
- classicalElectronRadius: _pureFunctionsAnyGenerated.classicalElectronRadius,
482
- electricConstant: _pureFunctionsAnyGenerated.electricConstant,
483
- fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
484
- gravity: _pureFunctionsAnyGenerated.gravity,
485
- loschmidt: _pureFunctionsAnyGenerated.loschmidt,
486
- molarMassC12: _pureFunctionsAnyGenerated.molarMassC12,
487
468
  nuclearMagneton: _pureFunctionsAnyGenerated.nuclearMagneton,
469
+ permutations: _pureFunctionsAnyGenerated.permutations,
470
+ planckConstant: _pureFunctionsAnyGenerated.planckConstant,
488
471
  planckMass: _pureFunctionsAnyGenerated.planckMass,
472
+ planckTime: _pureFunctionsAnyGenerated.planckTime,
489
473
  quantumOfCirculation: _pureFunctionsAnyGenerated.quantumOfCirculation,
490
- speedOfLight: _pureFunctionsAnyGenerated.speedOfLight,
491
- wienDisplacement: _pureFunctionsAnyGenerated.wienDisplacement,
474
+ reducedPlanckConstant: _pureFunctionsAnyGenerated.reducedPlanckConstant,
475
+ rydberg: _pureFunctionsAnyGenerated.rydberg,
476
+ setIntersect: _pureFunctionsAnyGenerated.setIntersect,
477
+ setUnion: _pureFunctionsAnyGenerated.setUnion,
478
+ stefanBoltzmann: _pureFunctionsAnyGenerated.stefanBoltzmann,
492
479
  unit: _pureFunctionsAnyGenerated.unit,
480
+ avogadro: _pureFunctionsAnyGenerated.avogadro,
481
+ bohrRadius: _pureFunctionsAnyGenerated.bohrRadius,
482
+ coulomb: _pureFunctionsAnyGenerated.coulomb,
483
+ electronMass: _pureFunctionsAnyGenerated.electronMass,
484
+ faraday: _pureFunctionsAnyGenerated.faraday,
485
+ hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
486
+ log1p: _pureFunctionsAnyGenerated.log1p,
487
+ magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
488
+ molarMassC12: _pureFunctionsAnyGenerated.molarMassC12,
493
489
  parse: parse,
490
+ planckCharge: _pureFunctionsAnyGenerated.planckCharge,
491
+ planckTemperature: _pureFunctionsAnyGenerated.planckTemperature,
492
+ secondRadiation: _pureFunctionsAnyGenerated.secondRadiation,
493
+ speedOfLight: _pureFunctionsAnyGenerated.speedOfLight,
494
+ stirlingS2: _pureFunctionsAnyGenerated.stirlingS2,
495
+ bellNumbers: _pureFunctionsAnyGenerated.bellNumbers,
496
+ compile: compile,
494
497
  evaluate: evaluate,
495
- intersect: _pureFunctionsAnyGenerated.intersect,
498
+ firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
499
+ lup: _pureFunctionsAnyGenerated.lup,
500
+ molarVolume: _pureFunctionsAnyGenerated.molarVolume,
501
+ protonMass: _pureFunctionsAnyGenerated.protonMass,
502
+ setSize: _pureFunctionsAnyGenerated.setSize,
503
+ thomsonCrossSection: _pureFunctionsAnyGenerated.thomsonCrossSection,
504
+ classicalElectronRadius: _pureFunctionsAnyGenerated.classicalElectronRadius,
505
+ det: _pureFunctionsAnyGenerated.det,
506
+ gravitationConstant: _pureFunctionsAnyGenerated.gravitationConstant,
507
+ inv: _pureFunctionsAnyGenerated.inv,
508
+ lusolve: _pureFunctionsAnyGenerated.lusolve,
509
+ parser: parser,
510
+ sqrtm: _pureFunctionsAnyGenerated.sqrtm,
511
+ divide: _pureFunctionsAnyGenerated.divide,
512
+ expm: _pureFunctionsAnyGenerated.expm,
513
+ kldivergence: _pureFunctionsAnyGenerated.kldivergence,
514
+ mean: _pureFunctionsAnyGenerated.mean,
515
+ median: _pureFunctionsAnyGenerated.median,
516
+ planckLength: _pureFunctionsAnyGenerated.planckLength,
496
517
  simplify: simplify,
518
+ variance: _pureFunctionsAnyGenerated.variance,
519
+ derivative: derivative,
520
+ help: help,
497
521
  rationalize: rationalize,
498
- coulomb: _pureFunctionsAnyGenerated.coulomb,
499
- gasConstant: _pureFunctionsAnyGenerated.gasConstant,
500
- magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
501
- planckConstant: _pureFunctionsAnyGenerated.planckConstant,
502
- rydberg: _pureFunctionsAnyGenerated.rydberg,
522
+ std: _pureFunctionsAnyGenerated.std,
523
+ eigs: _pureFunctionsAnyGenerated.eigs,
524
+ multinomial: _pureFunctionsAnyGenerated.multinomial,
525
+ mad: _pureFunctionsAnyGenerated.mad,
503
526
  norm: _pureFunctionsAnyGenerated.norm,
504
- help: help,
505
- derivative: derivative,
506
- elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
507
- molarVolume: _pureFunctionsAnyGenerated.molarVolume,
508
- thomsonCrossSection: _pureFunctionsAnyGenerated.thomsonCrossSection,
509
527
  rotationMatrix: _pureFunctionsAnyGenerated.rotationMatrix,
510
- parser: parser,
511
- bohrRadius: _pureFunctionsAnyGenerated.bohrRadius,
512
- planckTime: _pureFunctionsAnyGenerated.planckTime,
513
528
  rotate: _pureFunctionsAnyGenerated.rotate,
514
- multinomial: _pureFunctionsAnyGenerated.multinomial,
515
- compile: compile,
516
- inverseConductanceQuantum: _pureFunctionsAnyGenerated.inverseConductanceQuantum,
517
529
  config: _configReadonly.config
518
530
  });
519
531
  (0, _extends2["default"])(mathWithTransform, math, {
520
- apply: (0, _factoriesAny.createApplyTransform)({
521
- isInteger: _pureFunctionsAnyGenerated.isInteger,
532
+ filter: (0, _factoriesAny.createFilterTransform)({
522
533
  typed: _pureFunctionsAnyGenerated.typed
523
534
  }),
524
- filter: (0, _factoriesAny.createFilterTransform)({
535
+ forEach: (0, _factoriesAny.createForEachTransform)({
525
536
  typed: _pureFunctionsAnyGenerated.typed
526
537
  }),
527
538
  map: (0, _factoriesAny.createMapTransform)({
528
539
  typed: _pureFunctionsAnyGenerated.typed
529
540
  }),
530
- forEach: (0, _factoriesAny.createForEachTransform)({
541
+ apply: (0, _factoriesAny.createApplyTransform)({
542
+ isInteger: _pureFunctionsAnyGenerated.isInteger,
531
543
  typed: _pureFunctionsAnyGenerated.typed
532
544
  }),
533
- subset: (0, _factoriesAny.createSubsetTransform)({
545
+ diff: (0, _factoriesAny.createDiffTransform)({
546
+ bignumber: _pureFunctionsAnyGenerated.bignumber,
534
547
  matrix: _pureFunctionsAnyGenerated.matrix,
548
+ number: _pureFunctionsAnyGenerated.number,
549
+ subtract: _pureFunctionsAnyGenerated.subtract,
535
550
  typed: _pureFunctionsAnyGenerated.typed
536
551
  }),
537
552
  index: (0, _factoriesAny.createIndexTransform)({
538
553
  Index: _pureFunctionsAnyGenerated.Index
539
554
  }),
555
+ subset: (0, _factoriesAny.createSubsetTransform)({
556
+ matrix: _pureFunctionsAnyGenerated.matrix,
557
+ typed: _pureFunctionsAnyGenerated.typed
558
+ }),
540
559
  concat: (0, _factoriesAny.createConcatTransform)({
541
560
  isInteger: _pureFunctionsAnyGenerated.isInteger,
542
561
  matrix: _pureFunctionsAnyGenerated.matrix,
@@ -554,18 +573,6 @@ exports.compile = compile;
554
573
  smaller: _pureFunctionsAnyGenerated.smaller,
555
574
  typed: _pureFunctionsAnyGenerated.typed
556
575
  }),
557
- sum: (0, _factoriesAny.createSumTransform)({
558
- add: _pureFunctionsAnyGenerated.add,
559
- config: _configReadonly.config,
560
- numeric: _pureFunctionsAnyGenerated.numeric,
561
- typed: _pureFunctionsAnyGenerated.typed
562
- }),
563
- column: (0, _factoriesAny.createColumnTransform)({
564
- Index: _pureFunctionsAnyGenerated.Index,
565
- matrix: _pureFunctionsAnyGenerated.matrix,
566
- range: _pureFunctionsAnyGenerated.range,
567
- typed: _pureFunctionsAnyGenerated.typed
568
- }),
569
576
  range: (0, _factoriesAny.createRangeTransform)({
570
577
  bignumber: _pureFunctionsAnyGenerated.bignumber,
571
578
  matrix: _pureFunctionsAnyGenerated.matrix,
@@ -576,14 +583,19 @@ exports.compile = compile;
576
583
  smallerEq: _pureFunctionsAnyGenerated.smallerEq,
577
584
  typed: _pureFunctionsAnyGenerated.typed
578
585
  }),
579
- diff: (0, _factoriesAny.createDiffTransform)({
580
- bignumber: _pureFunctionsAnyGenerated.bignumber,
586
+ row: (0, _factoriesAny.createRowTransform)({
587
+ Index: _pureFunctionsAnyGenerated.Index,
581
588
  matrix: _pureFunctionsAnyGenerated.matrix,
582
- number: _pureFunctionsAnyGenerated.number,
583
- subtract: _pureFunctionsAnyGenerated.subtract,
589
+ range: _pureFunctionsAnyGenerated.range,
584
590
  typed: _pureFunctionsAnyGenerated.typed
585
591
  }),
586
- row: (0, _factoriesAny.createRowTransform)({
592
+ sum: (0, _factoriesAny.createSumTransform)({
593
+ add: _pureFunctionsAnyGenerated.add,
594
+ config: _configReadonly.config,
595
+ numeric: _pureFunctionsAnyGenerated.numeric,
596
+ typed: _pureFunctionsAnyGenerated.typed
597
+ }),
598
+ column: (0, _factoriesAny.createColumnTransform)({
587
599
  Index: _pureFunctionsAnyGenerated.Index,
588
600
  matrix: _pureFunctionsAnyGenerated.matrix,
589
601
  range: _pureFunctionsAnyGenerated.range,
@@ -610,34 +622,34 @@ exports.compile = compile;
610
622
  })
611
623
  });
612
624
  (0, _extends2["default"])(classes, {
613
- ResultSet: _pureFunctionsAnyGenerated.ResultSet,
625
+ BigNumber: _pureFunctionsAnyGenerated.BigNumber,
626
+ Chain: Chain,
614
627
  Complex: _pureFunctionsAnyGenerated.Complex,
615
- Range: _pureFunctionsAnyGenerated.Range,
628
+ Fraction: _pureFunctionsAnyGenerated.Fraction,
629
+ Matrix: _pureFunctionsAnyGenerated.Matrix,
616
630
  Node: Node,
617
- ArrayNode: ArrayNode,
618
- BlockNode: BlockNode,
619
- ConstantNode: ConstantNode,
620
631
  ObjectNode: ObjectNode,
632
+ OperatorNode: OperatorNode,
621
633
  ParenthesisNode: ParenthesisNode,
634
+ Range: _pureFunctionsAnyGenerated.Range,
622
635
  RelationalNode: RelationalNode,
623
- Chain: Chain,
624
- BigNumber: _pureFunctionsAnyGenerated.BigNumber,
625
- Matrix: _pureFunctionsAnyGenerated.Matrix,
636
+ ResultSet: _pureFunctionsAnyGenerated.ResultSet,
637
+ ArrayNode: ArrayNode,
638
+ BlockNode: BlockNode,
626
639
  ConditionalNode: ConditionalNode,
627
- OperatorNode: OperatorNode,
628
- Fraction: _pureFunctionsAnyGenerated.Fraction,
629
- RangeNode: RangeNode,
640
+ ConstantNode: ConstantNode,
630
641
  DenseMatrix: _pureFunctionsAnyGenerated.DenseMatrix,
642
+ RangeNode: RangeNode,
631
643
  FunctionAssignmentNode: FunctionAssignmentNode,
632
644
  SparseMatrix: _pureFunctionsAnyGenerated.SparseMatrix,
633
- ImmutableDenseMatrix: _pureFunctionsAnyGenerated.ImmutableDenseMatrix,
634
- FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
635
645
  AccessorNode: AccessorNode,
636
- IndexNode: IndexNode,
637
- Index: _pureFunctionsAnyGenerated.Index,
638
646
  AssignmentNode: AssignmentNode,
639
- Spa: _pureFunctionsAnyGenerated.Spa,
647
+ ImmutableDenseMatrix: _pureFunctionsAnyGenerated.ImmutableDenseMatrix,
648
+ Index: _pureFunctionsAnyGenerated.Index,
649
+ IndexNode: IndexNode,
650
+ FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
640
651
  Unit: _pureFunctionsAnyGenerated.Unit,
652
+ Spa: _pureFunctionsAnyGenerated.Spa,
641
653
  SymbolNode: SymbolNode,
642
654
  FunctionNode: FunctionNode,
643
655
  Help: Help,