mathjs 14.9.1 → 15.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 (146) hide show
  1. package/HISTORY.md +35 -0
  2. package/README.md +1 -1
  3. package/lib/browser/math.js +1 -1
  4. package/lib/browser/math.js.LICENSE.txt +2 -2
  5. package/lib/browser/math.js.map +1 -1
  6. package/lib/cjs/core/config.js +5 -1
  7. package/lib/cjs/core/function/config.js +4 -0
  8. package/lib/cjs/entry/dependenciesAny/dependenciesBernoulli.generated.js +25 -0
  9. package/lib/cjs/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
  10. package/lib/cjs/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
  11. package/lib/cjs/entry/dependenciesAny/dependenciesIsBounded.generated.js +17 -0
  12. package/lib/cjs/entry/dependenciesAny/dependenciesIsFinite.generated.js +21 -0
  13. package/lib/cjs/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
  14. package/lib/cjs/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
  15. package/lib/cjs/entry/dependenciesAny/dependenciesSize.generated.js +0 -2
  16. package/lib/cjs/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
  17. package/lib/cjs/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
  18. package/lib/cjs/entry/dependenciesAny.generated.js +21 -0
  19. package/lib/cjs/entry/dependenciesNumber/dependenciesBernoulli.generated.js +21 -0
  20. package/lib/cjs/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
  21. package/lib/cjs/entry/dependenciesNumber/dependenciesIsBounded.generated.js +17 -0
  22. package/lib/cjs/entry/dependenciesNumber/dependenciesIsFinite.generated.js +21 -0
  23. package/lib/cjs/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
  24. package/lib/cjs/entry/dependenciesNumber/dependenciesSize.generated.js +0 -2
  25. package/lib/cjs/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
  26. package/lib/cjs/entry/dependenciesNumber.generated.js +21 -0
  27. package/lib/cjs/entry/impureFunctionsAny.generated.js +223 -218
  28. package/lib/cjs/entry/impureFunctionsNumber.generated.js +82 -77
  29. package/lib/cjs/entry/pureFunctionsAny.generated.js +717 -702
  30. package/lib/cjs/entry/pureFunctionsNumber.generated.js +155 -142
  31. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +6 -0
  32. package/lib/cjs/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
  33. package/lib/cjs/expression/embeddedDocs/function/probability/bernoulli.js +14 -0
  34. package/lib/cjs/expression/embeddedDocs/function/utils/isBounded.js +14 -0
  35. package/lib/cjs/expression/embeddedDocs/function/utils/isFinite.js +14 -0
  36. package/lib/cjs/expression/embeddedDocs/function/utils/isNaN.js +1 -1
  37. package/lib/cjs/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
  38. package/lib/cjs/expression/node/AccessorNode.js +36 -7
  39. package/lib/cjs/expression/node/ConstantNode.js +4 -4
  40. package/lib/cjs/expression/node/FunctionNode.js +20 -5
  41. package/lib/cjs/expression/node/IndexNode.js +1 -1
  42. package/lib/cjs/expression/parse.js +74 -46
  43. package/lib/cjs/factoriesAny.js +21 -0
  44. package/lib/cjs/factoriesNumber.js +23 -2
  45. package/lib/cjs/function/algebra/simplifyConstant.js +3 -2
  46. package/lib/cjs/function/algebra/sylvester.js +6 -5
  47. package/lib/cjs/function/arithmetic/nthRoots.js +5 -1
  48. package/lib/cjs/function/logical/nullish.js +2 -2
  49. package/lib/cjs/function/matrix/column.js +2 -1
  50. package/lib/cjs/function/matrix/dot.js +4 -9
  51. package/lib/cjs/function/matrix/flatten.js +6 -3
  52. package/lib/cjs/function/matrix/kron.js +31 -30
  53. package/lib/cjs/function/matrix/row.js +2 -1
  54. package/lib/cjs/function/matrix/size.js +11 -17
  55. package/lib/cjs/function/matrix/subset.js +21 -11
  56. package/lib/cjs/function/probability/bernoulli.js +108 -0
  57. package/lib/cjs/function/relational/equal.js +2 -3
  58. package/lib/cjs/function/special/zeta.js +3 -2
  59. package/lib/cjs/function/utils/isBounded.js +54 -0
  60. package/lib/cjs/function/utils/isFinite.js +50 -0
  61. package/lib/cjs/function/utils/isInteger.js +7 -15
  62. package/lib/cjs/function/utils/isNaN.js +1 -1
  63. package/lib/cjs/function/utils/isNumeric.js +1 -1
  64. package/lib/cjs/header.js +2 -2
  65. package/lib/cjs/json/replacer.js +1 -1
  66. package/lib/cjs/plain/number/probability.js +2 -2
  67. package/lib/cjs/plain/number/trigonometry.js +1 -1
  68. package/lib/cjs/type/fraction/function/fraction.js +1 -1
  69. package/lib/cjs/type/matrix/DenseMatrix.js +52 -41
  70. package/lib/cjs/type/matrix/MatrixIndex.js +19 -20
  71. package/lib/cjs/type/matrix/SparseMatrix.js +37 -11
  72. package/lib/cjs/type/unit/Unit.js +12 -8
  73. package/lib/cjs/utils/number.js +7 -7
  74. package/lib/cjs/utils/optimizeCallback.js +13 -1
  75. package/lib/cjs/version.js +1 -1
  76. package/lib/esm/core/config.js +5 -1
  77. package/lib/esm/core/function/config.js +4 -0
  78. package/lib/esm/entry/dependenciesAny/dependenciesBernoulli.generated.js +18 -0
  79. package/lib/esm/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
  80. package/lib/esm/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
  81. package/lib/esm/entry/dependenciesAny/dependenciesIsBounded.generated.js +10 -0
  82. package/lib/esm/entry/dependenciesAny/dependenciesIsFinite.generated.js +14 -0
  83. package/lib/esm/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
  84. package/lib/esm/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
  85. package/lib/esm/entry/dependenciesAny/dependenciesSize.generated.js +0 -2
  86. package/lib/esm/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
  87. package/lib/esm/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
  88. package/lib/esm/entry/dependenciesAny.generated.js +3 -0
  89. package/lib/esm/entry/dependenciesNumber/dependenciesBernoulli.generated.js +14 -0
  90. package/lib/esm/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
  91. package/lib/esm/entry/dependenciesNumber/dependenciesIsBounded.generated.js +10 -0
  92. package/lib/esm/entry/dependenciesNumber/dependenciesIsFinite.generated.js +14 -0
  93. package/lib/esm/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
  94. package/lib/esm/entry/dependenciesNumber/dependenciesSize.generated.js +0 -2
  95. package/lib/esm/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
  96. package/lib/esm/entry/dependenciesNumber.generated.js +3 -0
  97. package/lib/esm/entry/impureFunctionsAny.generated.js +225 -220
  98. package/lib/esm/entry/impureFunctionsNumber.generated.js +84 -79
  99. package/lib/esm/entry/pureFunctionsAny.generated.js +714 -699
  100. package/lib/esm/entry/pureFunctionsNumber.generated.js +154 -141
  101. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +6 -0
  102. package/lib/esm/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
  103. package/lib/esm/expression/embeddedDocs/function/probability/bernoulli.js +8 -0
  104. package/lib/esm/expression/embeddedDocs/function/utils/isBounded.js +8 -0
  105. package/lib/esm/expression/embeddedDocs/function/utils/isFinite.js +8 -0
  106. package/lib/esm/expression/embeddedDocs/function/utils/isNaN.js +1 -1
  107. package/lib/esm/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
  108. package/lib/esm/expression/node/AccessorNode.js +36 -7
  109. package/lib/esm/expression/node/ConstantNode.js +4 -4
  110. package/lib/esm/expression/node/FunctionNode.js +20 -5
  111. package/lib/esm/expression/node/IndexNode.js +1 -1
  112. package/lib/esm/expression/parse.js +74 -46
  113. package/lib/esm/factoriesAny.js +3 -0
  114. package/lib/esm/factoriesNumber.js +3 -0
  115. package/lib/esm/function/algebra/simplifyConstant.js +3 -2
  116. package/lib/esm/function/algebra/sylvester.js +6 -5
  117. package/lib/esm/function/arithmetic/nthRoots.js +5 -1
  118. package/lib/esm/function/logical/nullish.js +2 -2
  119. package/lib/esm/function/matrix/column.js +2 -1
  120. package/lib/esm/function/matrix/dot.js +4 -9
  121. package/lib/esm/function/matrix/flatten.js +6 -3
  122. package/lib/esm/function/matrix/kron.js +31 -30
  123. package/lib/esm/function/matrix/row.js +2 -1
  124. package/lib/esm/function/matrix/size.js +11 -17
  125. package/lib/esm/function/matrix/subset.js +21 -11
  126. package/lib/esm/function/probability/bernoulli.js +102 -0
  127. package/lib/esm/function/relational/equal.js +2 -3
  128. package/lib/esm/function/special/zeta.js +3 -2
  129. package/lib/esm/function/utils/isBounded.js +48 -0
  130. package/lib/esm/function/utils/isFinite.js +44 -0
  131. package/lib/esm/function/utils/isInteger.js +7 -15
  132. package/lib/esm/function/utils/isNaN.js +1 -1
  133. package/lib/esm/function/utils/isNumeric.js +1 -1
  134. package/lib/esm/json/replacer.js +1 -1
  135. package/lib/esm/plain/number/probability.js +2 -2
  136. package/lib/esm/plain/number/trigonometry.js +1 -1
  137. package/lib/esm/type/fraction/function/fraction.js +1 -1
  138. package/lib/esm/type/matrix/DenseMatrix.js +52 -41
  139. package/lib/esm/type/matrix/MatrixIndex.js +20 -21
  140. package/lib/esm/type/matrix/SparseMatrix.js +37 -11
  141. package/lib/esm/type/unit/Unit.js +12 -8
  142. package/lib/esm/utils/number.js +7 -7
  143. package/lib/esm/utils/optimizeCallback.js +13 -1
  144. package/lib/esm/version.js +1 -1
  145. package/package.json +8 -8
  146. package/types/index.d.ts +535 -223
@@ -51,9 +51,6 @@ const BlockNode = exports.BlockNode = (0, _factoriesAny.createBlockNode)({
51
51
  const ConditionalNode = exports.ConditionalNode = (0, _factoriesAny.createConditionalNode)({
52
52
  Node
53
53
  });
54
- const ConstantNode = exports.ConstantNode = (0, _factoriesAny.createConstantNode)({
55
- Node
56
- });
57
54
  const RangeNode = exports.RangeNode = (0, _factoriesAny.createRangeNode)({
58
55
  Node
59
56
  });
@@ -72,6 +69,14 @@ const chain = exports.chain = (0, _factoriesAny.createChain)({
72
69
  Chain,
73
70
  typed: _pureFunctionsAnyGenerated.typed
74
71
  });
72
+ const ConstantNode = exports.ConstantNode = (0, _factoriesAny.createConstantNode)({
73
+ Node,
74
+ isBounded: _pureFunctionsAnyGenerated.isBounded
75
+ });
76
+ const IndexNode = exports.IndexNode = (0, _factoriesAny.createIndexNode)({
77
+ Node,
78
+ size: _pureFunctionsAnyGenerated.size
79
+ });
75
80
  const AccessorNode = exports.AccessorNode = (0, _factoriesAny.createAccessorNode)({
76
81
  Node,
77
82
  subset: _pureFunctionsAnyGenerated.subset
@@ -81,10 +86,6 @@ const AssignmentNode = exports.AssignmentNode = (0, _factoriesAny.createAssignme
81
86
  Node,
82
87
  subset: _pureFunctionsAnyGenerated.subset
83
88
  });
84
- const IndexNode = exports.IndexNode = (0, _factoriesAny.createIndexNode)({
85
- Node,
86
- size: _pureFunctionsAnyGenerated.size
87
- });
88
89
  const SymbolNode = exports.SymbolNode = (0, _factoriesAny.createSymbolNode)({
89
90
  Unit: _pureFunctionsAnyGenerated.Unit,
90
91
  Node,
@@ -135,6 +136,7 @@ const simplifyConstant = exports.simplifyConstant = (0, _factoriesAny.createSimp
135
136
  OperatorNode,
136
137
  SymbolNode,
137
138
  config: _configReadonly.config,
139
+ isBounded: _pureFunctionsAnyGenerated.isBounded,
138
140
  mathWithTransform,
139
141
  matrix: _pureFunctionsAnyGenerated.matrix,
140
142
  typed: _pureFunctionsAnyGenerated.typed
@@ -143,6 +145,10 @@ const compile = exports.compile = (0, _factoriesAny.createCompile)({
143
145
  parse,
144
146
  typed: _pureFunctionsAnyGenerated.typed
145
147
  });
148
+ const leafCount = exports.leafCount = (0, _factoriesAny.createLeafCount)({
149
+ parse,
150
+ typed: _pureFunctionsAnyGenerated.typed
151
+ });
146
152
  const simplifyCore = exports.simplifyCore = (0, _factoriesAny.createSimplifyCore)({
147
153
  AccessorNode,
148
154
  ArrayNode,
@@ -174,6 +180,10 @@ const Parser = exports.Parser = (0, _factoriesAny.createParserClass)({
174
180
  evaluate,
175
181
  parse
176
182
  });
183
+ const parser = exports.parser = (0, _factoriesAny.createParser)({
184
+ Parser,
185
+ typed: _pureFunctionsAnyGenerated.typed
186
+ });
177
187
  const simplify = exports.simplify = (0, _factoriesAny.createSimplify)({
178
188
  AccessorNode,
179
189
  ArrayNode,
@@ -198,12 +208,23 @@ const symbolicEqual = exports.symbolicEqual = (0, _factoriesAny.createSymbolicEq
198
208
  simplify,
199
209
  typed: _pureFunctionsAnyGenerated.typed
200
210
  });
201
- const leafCount = exports.leafCount = (0, _factoriesAny.createLeafCount)({
211
+ const derivative = exports.derivative = (0, _factoriesAny.createDerivative)({
212
+ ConstantNode,
213
+ FunctionNode,
214
+ OperatorNode,
215
+ ParenthesisNode,
216
+ SymbolNode,
217
+ config: _configReadonly.config,
218
+ equal: _pureFunctionsAnyGenerated.equal,
219
+ isZero: _pureFunctionsAnyGenerated.isZero,
220
+ numeric: _pureFunctionsAnyGenerated.numeric,
202
221
  parse,
222
+ simplify,
203
223
  typed: _pureFunctionsAnyGenerated.typed
204
224
  });
205
- const parser = exports.parser = (0, _factoriesAny.createParser)({
206
- Parser,
225
+ const help = exports.help = (0, _factoriesAny.createHelp)({
226
+ Help,
227
+ mathWithTransform,
207
228
  typed: _pureFunctionsAnyGenerated.typed
208
229
  });
209
230
  const rationalize = exports.rationalize = (0, _factoriesAny.createRationalize)({
@@ -234,25 +255,6 @@ const rationalize = exports.rationalize = (0, _factoriesAny.createRationalize)({
234
255
  subtract: _pureFunctionsAnyGenerated.subtract,
235
256
  typed: _pureFunctionsAnyGenerated.typed
236
257
  });
237
- const derivative = exports.derivative = (0, _factoriesAny.createDerivative)({
238
- ConstantNode,
239
- FunctionNode,
240
- OperatorNode,
241
- ParenthesisNode,
242
- SymbolNode,
243
- config: _configReadonly.config,
244
- equal: _pureFunctionsAnyGenerated.equal,
245
- isZero: _pureFunctionsAnyGenerated.isZero,
246
- numeric: _pureFunctionsAnyGenerated.numeric,
247
- parse,
248
- simplify,
249
- typed: _pureFunctionsAnyGenerated.typed
250
- });
251
- const help = exports.help = (0, _factoriesAny.createHelp)({
252
- Help,
253
- mathWithTransform,
254
- typed: _pureFunctionsAnyGenerated.typed
255
- });
256
258
  (0, _extends2.default)(math, {
257
259
  e: _pureFunctionsAnyGenerated.e,
258
260
  false: _pureFunctionsAnyGenerated._false,
@@ -311,15 +313,16 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
311
313
  getMatrixDataType: _pureFunctionsAnyGenerated.getMatrixDataType,
312
314
  hex: _pureFunctionsAnyGenerated.hex,
313
315
  im: _pureFunctionsAnyGenerated.im,
314
- isInteger: _pureFunctionsAnyGenerated.isInteger,
315
- isNegative: _pureFunctionsAnyGenerated.isNegative,
316
- isPositive: _pureFunctionsAnyGenerated.isPositive,
317
- isZero: _pureFunctionsAnyGenerated.isZero,
316
+ isBounded: _pureFunctionsAnyGenerated.isBounded,
317
+ isNaN: _pureFunctionsAnyGenerated.isNaN,
318
+ isNumeric: _pureFunctionsAnyGenerated.isNumeric,
319
+ isPrime: _pureFunctionsAnyGenerated.isPrime,
318
320
  LOG2E: _pureFunctionsAnyGenerated.LOG2E,
319
321
  lgamma: _pureFunctionsAnyGenerated.lgamma,
320
322
  log10: _pureFunctionsAnyGenerated.log10,
321
323
  log2: _pureFunctionsAnyGenerated.log2,
322
324
  map: _pureFunctionsAnyGenerated.map,
325
+ mode: _pureFunctionsAnyGenerated.mode,
323
326
  multiplyScalar: _pureFunctionsAnyGenerated.multiplyScalar,
324
327
  not: _pureFunctionsAnyGenerated.not,
325
328
  number: _pureFunctionsAnyGenerated.number,
@@ -331,6 +334,7 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
331
334
  sec: _pureFunctionsAnyGenerated.sec,
332
335
  sign: _pureFunctionsAnyGenerated.sign,
333
336
  sin: _pureFunctionsAnyGenerated.sin,
337
+ size: _pureFunctionsAnyGenerated.size,
334
338
  splitUnit: _pureFunctionsAnyGenerated.splitUnit,
335
339
  square: _pureFunctionsAnyGenerated.square,
336
340
  string: _pureFunctionsAnyGenerated.string,
@@ -346,14 +350,17 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
346
350
  combinationsWithRep: _pureFunctionsAnyGenerated.combinationsWithRep,
347
351
  cosh: _pureFunctionsAnyGenerated.cosh,
348
352
  csch: _pureFunctionsAnyGenerated.csch,
349
- isNaN: _pureFunctionsAnyGenerated.isNaN,
350
- isPrime: _pureFunctionsAnyGenerated.isPrime,
351
- mapSlices: _pureFunctionsAnyGenerated.mapSlices,
353
+ dot: _pureFunctionsAnyGenerated.dot,
354
+ hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
355
+ isFinite: _pureFunctionsAnyGenerated.isFinite,
356
+ isNegative: _pureFunctionsAnyGenerated.isNegative,
357
+ isZero: _pureFunctionsAnyGenerated.isZero,
352
358
  matrix: _pureFunctionsAnyGenerated.matrix,
353
359
  matrixFromFunction: _pureFunctionsAnyGenerated.matrixFromFunction,
360
+ multiply: _pureFunctionsAnyGenerated.multiply,
354
361
  ones: _pureFunctionsAnyGenerated.ones,
355
362
  randomInt: _pureFunctionsAnyGenerated.randomInt,
356
- reshape: _pureFunctionsAnyGenerated.reshape,
363
+ resize: _pureFunctionsAnyGenerated.resize,
357
364
  sech: _pureFunctionsAnyGenerated.sech,
358
365
  sinh: _pureFunctionsAnyGenerated.sinh,
359
366
  sparse: _pureFunctionsAnyGenerated.sparse,
@@ -366,208 +373,205 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
366
373
  acoth: _pureFunctionsAnyGenerated.acoth,
367
374
  asin: _pureFunctionsAnyGenerated.asin,
368
375
  bin: _pureFunctionsAnyGenerated.bin,
369
- concat: _pureFunctionsAnyGenerated.concat,
370
376
  coth: _pureFunctionsAnyGenerated.coth,
371
377
  ctranspose: _pureFunctionsAnyGenerated.ctranspose,
372
378
  diag: _pureFunctionsAnyGenerated.diag,
373
- dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
374
379
  equal: _pureFunctionsAnyGenerated.equal,
375
380
  fraction: _pureFunctionsAnyGenerated.fraction,
376
381
  identity: _pureFunctionsAnyGenerated.identity,
377
- isNumeric: _pureFunctionsAnyGenerated.isNumeric,
382
+ isInteger: _pureFunctionsAnyGenerated.isInteger,
378
383
  kron: _pureFunctionsAnyGenerated.kron,
379
- largerEq: _pureFunctionsAnyGenerated.largerEq,
380
- leftShift: _pureFunctionsAnyGenerated.leftShift,
381
- mode: _pureFunctionsAnyGenerated.mode,
382
- nthRoot: _pureFunctionsAnyGenerated.nthRoot,
384
+ mapSlices: _pureFunctionsAnyGenerated.mapSlices,
385
+ matrixFromColumns: _pureFunctionsAnyGenerated.matrixFromColumns,
383
386
  numeric: _pureFunctionsAnyGenerated.numeric,
384
387
  prod: _pureFunctionsAnyGenerated.prod,
385
- resize: _pureFunctionsAnyGenerated.resize,
386
- rightArithShift: _pureFunctionsAnyGenerated.rightArithShift,
388
+ reshape: _pureFunctionsAnyGenerated.reshape,
387
389
  round: _pureFunctionsAnyGenerated.round,
388
- size: _pureFunctionsAnyGenerated.size,
389
- smaller: _pureFunctionsAnyGenerated.smaller,
390
- to: _pureFunctionsAnyGenerated.to,
391
390
  unaryMinus: _pureFunctionsAnyGenerated.unaryMinus,
392
- unequal: _pureFunctionsAnyGenerated.unequal,
393
- xor: _pureFunctionsAnyGenerated.xor,
394
- add: _pureFunctionsAnyGenerated.add,
395
- atan2: _pureFunctionsAnyGenerated.atan2,
396
- bitAnd: _pureFunctionsAnyGenerated.bitAnd,
397
- bitOr: _pureFunctionsAnyGenerated.bitOr,
398
- bitXor: _pureFunctionsAnyGenerated.bitXor,
391
+ bernoulli: _pureFunctionsAnyGenerated.bernoulli,
399
392
  cbrt: _pureFunctionsAnyGenerated.cbrt,
400
- compare: _pureFunctionsAnyGenerated.compare,
401
- compareText: _pureFunctionsAnyGenerated.compareText,
393
+ concat: _pureFunctionsAnyGenerated.concat,
402
394
  count: _pureFunctionsAnyGenerated.count,
403
395
  deepEqual: _pureFunctionsAnyGenerated.deepEqual,
404
396
  divideScalar: _pureFunctionsAnyGenerated.divideScalar,
405
- dotDivide: _pureFunctionsAnyGenerated.dotDivide,
406
- equalText: _pureFunctionsAnyGenerated.equalText,
397
+ dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
407
398
  floor: _pureFunctionsAnyGenerated.floor,
408
399
  gcd: _pureFunctionsAnyGenerated.gcd,
409
- hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
410
- hypot: _pureFunctionsAnyGenerated.hypot,
400
+ isPositive: _pureFunctionsAnyGenerated.isPositive,
411
401
  larger: _pureFunctionsAnyGenerated.larger,
412
- log: _pureFunctionsAnyGenerated.log,
402
+ lcm: _pureFunctionsAnyGenerated.lcm,
403
+ leftShift: _pureFunctionsAnyGenerated.leftShift,
413
404
  lsolve: _pureFunctionsAnyGenerated.lsolve,
414
- matrixFromColumns: _pureFunctionsAnyGenerated.matrixFromColumns,
415
405
  max: _pureFunctionsAnyGenerated.max,
416
- min: _pureFunctionsAnyGenerated.min,
417
406
  mod: _pureFunctionsAnyGenerated.mod,
418
- nthRoots: _pureFunctionsAnyGenerated.nthRoots,
407
+ nthRoot: _pureFunctionsAnyGenerated.nthRoot,
419
408
  nullish: _pureFunctionsAnyGenerated.nullish,
420
409
  or: _pureFunctionsAnyGenerated.or,
421
- partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
422
410
  qr: _pureFunctionsAnyGenerated.qr,
423
- rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
424
- smallerEq: _pureFunctionsAnyGenerated.smallerEq,
425
- subset: _pureFunctionsAnyGenerated.subset,
411
+ rightArithShift: _pureFunctionsAnyGenerated.rightArithShift,
412
+ smaller: _pureFunctionsAnyGenerated.smaller,
426
413
  subtract: _pureFunctionsAnyGenerated.subtract,
427
- trace: _pureFunctionsAnyGenerated.trace,
414
+ to: _pureFunctionsAnyGenerated.to,
415
+ unaryPlus: _pureFunctionsAnyGenerated.unaryPlus,
428
416
  usolve: _pureFunctionsAnyGenerated.usolve,
417
+ xor: _pureFunctionsAnyGenerated.xor,
418
+ add: _pureFunctionsAnyGenerated.add,
419
+ atan2: _pureFunctionsAnyGenerated.atan2,
420
+ bitAnd: _pureFunctionsAnyGenerated.bitAnd,
421
+ bitOr: _pureFunctionsAnyGenerated.bitOr,
422
+ bitXor: _pureFunctionsAnyGenerated.bitXor,
429
423
  catalan: _pureFunctionsAnyGenerated.catalan,
430
- compareNatural: _pureFunctionsAnyGenerated.compareNatural,
424
+ compare: _pureFunctionsAnyGenerated.compare,
425
+ compareText: _pureFunctionsAnyGenerated.compareText,
431
426
  composition: _pureFunctionsAnyGenerated.composition,
427
+ cross: _pureFunctionsAnyGenerated.cross,
428
+ det: _pureFunctionsAnyGenerated.det,
432
429
  diff: _pureFunctionsAnyGenerated.diff,
433
430
  distance: _pureFunctionsAnyGenerated.distance,
434
- dot: _pureFunctionsAnyGenerated.dot,
435
- index: _pureFunctionsAnyGenerated.index,
431
+ dotDivide: _pureFunctionsAnyGenerated.dotDivide,
432
+ equalText: _pureFunctionsAnyGenerated.equalText,
433
+ hypot: _pureFunctionsAnyGenerated.hypot,
434
+ intersect: _pureFunctionsAnyGenerated.intersect,
436
435
  invmod: _pureFunctionsAnyGenerated.invmod,
437
- lcm: _pureFunctionsAnyGenerated.lcm,
438
- log1p: _pureFunctionsAnyGenerated.log1p,
436
+ largerEq: _pureFunctionsAnyGenerated.largerEq,
437
+ log: _pureFunctionsAnyGenerated.log,
439
438
  lsolveAll: _pureFunctionsAnyGenerated.lsolveAll,
440
439
  matrixFromRows: _pureFunctionsAnyGenerated.matrixFromRows,
441
- multiply: _pureFunctionsAnyGenerated.multiply,
442
- range: _pureFunctionsAnyGenerated.range,
443
- row: _pureFunctionsAnyGenerated.row,
444
- setCartesian: _pureFunctionsAnyGenerated.setCartesian,
445
- setDistinct: _pureFunctionsAnyGenerated.setDistinct,
446
- setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
447
- setPowerset: _pureFunctionsAnyGenerated.setPowerset,
440
+ min: _pureFunctionsAnyGenerated.min,
441
+ nthRoots: _pureFunctionsAnyGenerated.nthRoots,
442
+ partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
443
+ rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
448
444
  slu: _pureFunctionsAnyGenerated.slu,
449
- sort: _pureFunctionsAnyGenerated.sort,
450
- unaryPlus: _pureFunctionsAnyGenerated.unaryPlus,
445
+ subset: _pureFunctionsAnyGenerated.subset,
446
+ sum: _pureFunctionsAnyGenerated.sum,
447
+ trace: _pureFunctionsAnyGenerated.trace,
451
448
  usolveAll: _pureFunctionsAnyGenerated.usolveAll,
452
449
  zpk2tf: _pureFunctionsAnyGenerated.zpk2tf,
453
- and: _pureFunctionsAnyGenerated.and,
454
450
  ceil: _pureFunctionsAnyGenerated.ceil,
455
- column: _pureFunctionsAnyGenerated.column,
456
- cross: _pureFunctionsAnyGenerated.cross,
457
- det: _pureFunctionsAnyGenerated.det,
451
+ compareNatural: _pureFunctionsAnyGenerated.compareNatural,
452
+ cumsum: _pureFunctionsAnyGenerated.cumsum,
458
453
  fix: _pureFunctionsAnyGenerated.fix,
454
+ index: _pureFunctionsAnyGenerated.index,
459
455
  inv: _pureFunctionsAnyGenerated.inv,
456
+ log1p: _pureFunctionsAnyGenerated.log1p,
457
+ lup: _pureFunctionsAnyGenerated.lup,
460
458
  pinv: _pureFunctionsAnyGenerated.pinv,
461
459
  pow: _pureFunctionsAnyGenerated.pow,
460
+ setCartesian: _pureFunctionsAnyGenerated.setCartesian,
461
+ setDistinct: _pureFunctionsAnyGenerated.setDistinct,
462
+ setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
463
+ setPowerset: _pureFunctionsAnyGenerated.setPowerset,
464
+ smallerEq: _pureFunctionsAnyGenerated.smallerEq,
465
+ sort: _pureFunctionsAnyGenerated.sort,
466
+ sqrtm: _pureFunctionsAnyGenerated.sqrtm,
467
+ unequal: _pureFunctionsAnyGenerated.unequal,
468
+ and: _pureFunctionsAnyGenerated.and,
469
+ divide: _pureFunctionsAnyGenerated.divide,
470
+ expm: _pureFunctionsAnyGenerated.expm,
471
+ fft: _pureFunctionsAnyGenerated.fft,
472
+ freqz: _pureFunctionsAnyGenerated.freqz,
473
+ gamma: _pureFunctionsAnyGenerated.gamma,
474
+ ifft: _pureFunctionsAnyGenerated.ifft,
475
+ kldivergence: _pureFunctionsAnyGenerated.kldivergence,
476
+ lusolve: _pureFunctionsAnyGenerated.lusolve,
477
+ mean: _pureFunctionsAnyGenerated.mean,
478
+ median: _pureFunctionsAnyGenerated.median,
479
+ polynomialRoot: _pureFunctionsAnyGenerated.polynomialRoot,
480
+ quantileSeq: _pureFunctionsAnyGenerated.quantileSeq,
481
+ range: _pureFunctionsAnyGenerated.range,
482
+ row: _pureFunctionsAnyGenerated.row,
462
483
  setDifference: _pureFunctionsAnyGenerated.setDifference,
463
484
  setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
464
485
  setSymDifference: _pureFunctionsAnyGenerated.setSymDifference,
465
- sqrtm: _pureFunctionsAnyGenerated.sqrtm,
466
- sum: _pureFunctionsAnyGenerated.sum,
486
+ solveODE: _pureFunctionsAnyGenerated.solveODE,
467
487
  vacuumImpedance: _pureFunctionsAnyGenerated.vacuumImpedance,
468
- wienDisplacement: _pureFunctionsAnyGenerated.wienDisplacement,
469
488
  atomicMass: _pureFunctionsAnyGenerated.atomicMass,
470
489
  bohrMagneton: _pureFunctionsAnyGenerated.bohrMagneton,
471
490
  boltzmann: _pureFunctionsAnyGenerated.boltzmann,
491
+ column: _pureFunctionsAnyGenerated.column,
472
492
  conductanceQuantum: _pureFunctionsAnyGenerated.conductanceQuantum,
473
493
  coulomb: _pureFunctionsAnyGenerated.coulomb,
474
494
  createUnit: _pureFunctionsAnyGenerated.createUnit,
475
495
  deuteronMass: _pureFunctionsAnyGenerated.deuteronMass,
476
- dotPow: _pureFunctionsAnyGenerated.dotPow,
477
- electricConstant: _pureFunctionsAnyGenerated.electricConstant,
478
- elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
479
- expm: _pureFunctionsAnyGenerated.expm,
480
- faraday: _pureFunctionsAnyGenerated.faraday,
481
- fft: _pureFunctionsAnyGenerated.fft,
482
- gamma: _pureFunctionsAnyGenerated.gamma,
483
- gravitationConstant: _pureFunctionsAnyGenerated.gravitationConstant,
484
- hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
485
- ifft: _pureFunctionsAnyGenerated.ifft,
486
- inverseConductanceQuantum: _pureFunctionsAnyGenerated.inverseConductanceQuantum,
496
+ eigs: _pureFunctionsAnyGenerated.eigs,
497
+ electronMass: _pureFunctionsAnyGenerated.electronMass,
498
+ factorial: _pureFunctionsAnyGenerated.factorial,
499
+ fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
500
+ gasConstant: _pureFunctionsAnyGenerated.gasConstant,
501
+ gravity: _pureFunctionsAnyGenerated.gravity,
487
502
  klitzing: _pureFunctionsAnyGenerated.klitzing,
488
503
  loschmidt: _pureFunctionsAnyGenerated.loschmidt,
489
- magneticConstant: _pureFunctionsAnyGenerated.magneticConstant,
504
+ mad: _pureFunctionsAnyGenerated.mad,
505
+ magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
490
506
  molarMass: _pureFunctionsAnyGenerated.molarMass,
491
507
  molarPlanckConstant: _pureFunctionsAnyGenerated.molarPlanckConstant,
492
- neutronMass: _pureFunctionsAnyGenerated.neutronMass,
493
- nuclearMagneton: _pureFunctionsAnyGenerated.nuclearMagneton,
494
- planckCharge: _pureFunctionsAnyGenerated.planckCharge,
495
- planckLength: _pureFunctionsAnyGenerated.planckLength,
496
- planckTemperature: _pureFunctionsAnyGenerated.planckTemperature,
497
- protonMass: _pureFunctionsAnyGenerated.protonMass,
498
- quantumOfCirculation: _pureFunctionsAnyGenerated.quantumOfCirculation,
508
+ multinomial: _pureFunctionsAnyGenerated.multinomial,
509
+ norm: _pureFunctionsAnyGenerated.norm,
510
+ permutations: _pureFunctionsAnyGenerated.permutations,
511
+ planckConstant: _pureFunctionsAnyGenerated.planckConstant,
512
+ planckMass: _pureFunctionsAnyGenerated.planckMass,
513
+ planckTime: _pureFunctionsAnyGenerated.planckTime,
499
514
  reducedPlanckConstant: _pureFunctionsAnyGenerated.reducedPlanckConstant,
515
+ rotationMatrix: _pureFunctionsAnyGenerated.rotationMatrix,
500
516
  rydberg: _pureFunctionsAnyGenerated.rydberg,
501
517
  secondRadiation: _pureFunctionsAnyGenerated.secondRadiation,
502
518
  setSize: _pureFunctionsAnyGenerated.setSize,
503
519
  speedOfLight: _pureFunctionsAnyGenerated.speedOfLight,
504
520
  stefanBoltzmann: _pureFunctionsAnyGenerated.stefanBoltzmann,
505
521
  thomsonCrossSection: _pureFunctionsAnyGenerated.thomsonCrossSection,
522
+ variance: _pureFunctionsAnyGenerated.variance,
523
+ zeta: _pureFunctionsAnyGenerated.zeta,
506
524
  avogadro: _pureFunctionsAnyGenerated.avogadro,
507
525
  bohrRadius: _pureFunctionsAnyGenerated.bohrRadius,
508
- coulombConstant: _pureFunctionsAnyGenerated.coulombConstant,
509
- divide: _pureFunctionsAnyGenerated.divide,
510
- electronMass: _pureFunctionsAnyGenerated.electronMass,
511
- factorial: _pureFunctionsAnyGenerated.factorial,
512
- firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
513
- gravity: _pureFunctionsAnyGenerated.gravity,
514
- intersect: _pureFunctionsAnyGenerated.intersect,
515
- lup: _pureFunctionsAnyGenerated.lup,
516
- magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
526
+ corr: _pureFunctionsAnyGenerated.corr,
527
+ dotPow: _pureFunctionsAnyGenerated.dotPow,
528
+ elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
529
+ faraday: _pureFunctionsAnyGenerated.faraday,
530
+ hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
531
+ inverseConductanceQuantum: _pureFunctionsAnyGenerated.inverseConductanceQuantum,
532
+ magneticConstant: _pureFunctionsAnyGenerated.magneticConstant,
517
533
  molarMassC12: _pureFunctionsAnyGenerated.molarMassC12,
518
- multinomial: _pureFunctionsAnyGenerated.multinomial,
534
+ neutronMass: _pureFunctionsAnyGenerated.neutronMass,
519
535
  parse,
520
- permutations: _pureFunctionsAnyGenerated.permutations,
521
- planckMass: _pureFunctionsAnyGenerated.planckMass,
522
- polynomialRoot: _pureFunctionsAnyGenerated.polynomialRoot,
536
+ planckCharge: _pureFunctionsAnyGenerated.planckCharge,
537
+ planckTemperature: _pureFunctionsAnyGenerated.planckTemperature,
538
+ quantumOfCirculation: _pureFunctionsAnyGenerated.quantumOfCirculation,
523
539
  resolve,
524
540
  setIntersect: _pureFunctionsAnyGenerated.setIntersect,
525
541
  simplifyConstant,
526
- solveODE: _pureFunctionsAnyGenerated.solveODE,
542
+ std: _pureFunctionsAnyGenerated.std,
527
543
  stirlingS2: _pureFunctionsAnyGenerated.stirlingS2,
528
544
  unit: _pureFunctionsAnyGenerated.unit,
529
545
  bellNumbers: _pureFunctionsAnyGenerated.bellNumbers,
530
546
  compile,
531
- cumsum: _pureFunctionsAnyGenerated.cumsum,
532
- eigs: _pureFunctionsAnyGenerated.eigs,
533
- fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
534
- gasConstant: _pureFunctionsAnyGenerated.gasConstant,
535
- kldivergence: _pureFunctionsAnyGenerated.kldivergence,
536
- lusolve: _pureFunctionsAnyGenerated.lusolve,
537
- mean: _pureFunctionsAnyGenerated.mean,
538
- molarVolume: _pureFunctionsAnyGenerated.molarVolume,
539
- planckConstant: _pureFunctionsAnyGenerated.planckConstant,
540
- quantileSeq: _pureFunctionsAnyGenerated.quantileSeq,
547
+ electricConstant: _pureFunctionsAnyGenerated.electricConstant,
548
+ firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
549
+ leafCount,
550
+ nuclearMagneton: _pureFunctionsAnyGenerated.nuclearMagneton,
551
+ planckLength: _pureFunctionsAnyGenerated.planckLength,
552
+ rotate: _pureFunctionsAnyGenerated.rotate,
541
553
  setUnion: _pureFunctionsAnyGenerated.setUnion,
542
554
  simplifyCore,
543
- variance: _pureFunctionsAnyGenerated.variance,
555
+ wienDisplacement: _pureFunctionsAnyGenerated.wienDisplacement,
544
556
  classicalElectronRadius: _pureFunctionsAnyGenerated.classicalElectronRadius,
545
557
  evaluate,
546
- median: _pureFunctionsAnyGenerated.median,
558
+ molarVolume: _pureFunctionsAnyGenerated.molarVolume,
559
+ schur: _pureFunctionsAnyGenerated.schur,
560
+ coulombConstant: _pureFunctionsAnyGenerated.coulombConstant,
561
+ gravitationConstant: _pureFunctionsAnyGenerated.gravitationConstant,
562
+ parser,
547
563
  simplify,
548
564
  symbolicEqual,
549
- corr: _pureFunctionsAnyGenerated.corr,
550
- freqz: _pureFunctionsAnyGenerated.freqz,
551
- leafCount,
552
- mad: _pureFunctionsAnyGenerated.mad,
553
- parser,
554
- rationalize,
555
- std: _pureFunctionsAnyGenerated.std,
556
- zeta: _pureFunctionsAnyGenerated.zeta,
557
565
  derivative,
558
- norm: _pureFunctionsAnyGenerated.norm,
559
- rotationMatrix: _pureFunctionsAnyGenerated.rotationMatrix,
560
- help,
561
- planckTime: _pureFunctionsAnyGenerated.planckTime,
562
- schur: _pureFunctionsAnyGenerated.schur,
563
- rotate: _pureFunctionsAnyGenerated.rotate,
566
+ protonMass: _pureFunctionsAnyGenerated.protonMass,
564
567
  sylvester: _pureFunctionsAnyGenerated.sylvester,
568
+ help,
569
+ rationalize,
565
570
  lyap: _pureFunctionsAnyGenerated.lyap,
566
571
  config: _configReadonly.config
567
572
  });
568
573
  (0, _extends2.default)(mathWithTransform, math, {
569
- mapSlices: (0, _factoriesAny.createMapSlicesTransform)({
570
- isInteger: _pureFunctionsAnyGenerated.isInteger,
574
+ map: (0, _factoriesAny.createMapTransform)({
571
575
  typed: _pureFunctionsAnyGenerated.typed
572
576
  }),
573
577
  filter: (0, _factoriesAny.createFilterTransform)({
@@ -576,14 +580,8 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
576
580
  forEach: (0, _factoriesAny.createForEachTransform)({
577
581
  typed: _pureFunctionsAnyGenerated.typed
578
582
  }),
579
- map: (0, _factoriesAny.createMapTransform)({
580
- typed: _pureFunctionsAnyGenerated.typed
581
- }),
582
- or: (0, _factoriesAny.createOrTransform)({
583
- DenseMatrix: _pureFunctionsAnyGenerated.DenseMatrix,
584
- concat: _pureFunctionsAnyGenerated.concat,
585
- equalScalar: _pureFunctionsAnyGenerated.equalScalar,
586
- matrix: _pureFunctionsAnyGenerated.matrix,
583
+ mapSlices: (0, _factoriesAny.createMapSlicesTransform)({
584
+ isInteger: _pureFunctionsAnyGenerated.isInteger,
587
585
  typed: _pureFunctionsAnyGenerated.typed
588
586
  }),
589
587
  and: (0, _factoriesAny.createAndTransform)({
@@ -595,27 +593,24 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
595
593
  typed: _pureFunctionsAnyGenerated.typed,
596
594
  zeros: _pureFunctionsAnyGenerated.zeros
597
595
  }),
598
- concat: (0, _factoriesAny.createConcatTransform)({
599
- isInteger: _pureFunctionsAnyGenerated.isInteger,
596
+ cumsum: (0, _factoriesAny.createCumSumTransform)({
597
+ add: _pureFunctionsAnyGenerated.add,
598
+ typed: _pureFunctionsAnyGenerated.typed,
599
+ unaryPlus: _pureFunctionsAnyGenerated.unaryPlus
600
+ }),
601
+ nullish: (0, _factoriesAny.createNullishTransform)({
602
+ deepEqual: _pureFunctionsAnyGenerated.deepEqual,
603
+ flatten: _pureFunctionsAnyGenerated.flatten,
600
604
  matrix: _pureFunctionsAnyGenerated.matrix,
605
+ size: _pureFunctionsAnyGenerated.size,
601
606
  typed: _pureFunctionsAnyGenerated.typed
602
607
  }),
603
- index: (0, _factoriesAny.createIndexTransform)({
604
- Index: _pureFunctionsAnyGenerated.Index,
605
- getMatrixDataType: _pureFunctionsAnyGenerated.getMatrixDataType
606
- }),
607
608
  print: (0, _factoriesAny.createPrintTransform)({
608
609
  add: _pureFunctionsAnyGenerated.add,
609
610
  matrix: _pureFunctionsAnyGenerated.matrix,
610
611
  typed: _pureFunctionsAnyGenerated.typed,
611
612
  zeros: _pureFunctionsAnyGenerated.zeros
612
613
  }),
613
- sum: (0, _factoriesAny.createSumTransform)({
614
- add: _pureFunctionsAnyGenerated.add,
615
- config: _configReadonly.config,
616
- numeric: _pureFunctionsAnyGenerated.numeric,
617
- typed: _pureFunctionsAnyGenerated.typed
618
- }),
619
614
  bitAnd: (0, _factoriesAny.createBitAndTransform)({
620
615
  add: _pureFunctionsAnyGenerated.add,
621
616
  concat: _pureFunctionsAnyGenerated.concat,
@@ -625,6 +620,25 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
625
620
  typed: _pureFunctionsAnyGenerated.typed,
626
621
  zeros: _pureFunctionsAnyGenerated.zeros
627
622
  }),
623
+ concat: (0, _factoriesAny.createConcatTransform)({
624
+ isInteger: _pureFunctionsAnyGenerated.isInteger,
625
+ matrix: _pureFunctionsAnyGenerated.matrix,
626
+ typed: _pureFunctionsAnyGenerated.typed
627
+ }),
628
+ diff: (0, _factoriesAny.createDiffTransform)({
629
+ bignumber: _pureFunctionsAnyGenerated.bignumber,
630
+ matrix: _pureFunctionsAnyGenerated.matrix,
631
+ number: _pureFunctionsAnyGenerated.number,
632
+ subtract: _pureFunctionsAnyGenerated.subtract,
633
+ typed: _pureFunctionsAnyGenerated.typed
634
+ }),
635
+ max: (0, _factoriesAny.createMaxTransform)({
636
+ config: _configReadonly.config,
637
+ isNaN: _pureFunctionsAnyGenerated.isNaN,
638
+ larger: _pureFunctionsAnyGenerated.larger,
639
+ numeric: _pureFunctionsAnyGenerated.numeric,
640
+ typed: _pureFunctionsAnyGenerated.typed
641
+ }),
628
642
  min: (0, _factoriesAny.createMinTransform)({
629
643
  config: _configReadonly.config,
630
644
  isNaN: _pureFunctionsAnyGenerated.isNaN,
@@ -632,11 +646,11 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
632
646
  smaller: _pureFunctionsAnyGenerated.smaller,
633
647
  typed: _pureFunctionsAnyGenerated.typed
634
648
  }),
635
- nullish: (0, _factoriesAny.createNullishTransform)({
636
- deepEqual: _pureFunctionsAnyGenerated.deepEqual,
637
- flatten: _pureFunctionsAnyGenerated.flatten,
649
+ or: (0, _factoriesAny.createOrTransform)({
650
+ DenseMatrix: _pureFunctionsAnyGenerated.DenseMatrix,
651
+ concat: _pureFunctionsAnyGenerated.concat,
652
+ equalScalar: _pureFunctionsAnyGenerated.equalScalar,
638
653
  matrix: _pureFunctionsAnyGenerated.matrix,
639
- size: _pureFunctionsAnyGenerated.size,
640
654
  typed: _pureFunctionsAnyGenerated.typed
641
655
  }),
642
656
  subset: (0, _factoriesAny.createSubsetTransform)({
@@ -652,23 +666,38 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
652
666
  matrix: _pureFunctionsAnyGenerated.matrix,
653
667
  typed: _pureFunctionsAnyGenerated.typed
654
668
  }),
655
- cumsum: (0, _factoriesAny.createCumSumTransform)({
669
+ sum: (0, _factoriesAny.createSumTransform)({
656
670
  add: _pureFunctionsAnyGenerated.add,
657
- typed: _pureFunctionsAnyGenerated.typed,
658
- unaryPlus: _pureFunctionsAnyGenerated.unaryPlus
671
+ config: _configReadonly.config,
672
+ numeric: _pureFunctionsAnyGenerated.numeric,
673
+ typed: _pureFunctionsAnyGenerated.typed
659
674
  }),
660
- diff: (0, _factoriesAny.createDiffTransform)({
661
- bignumber: _pureFunctionsAnyGenerated.bignumber,
662
- matrix: _pureFunctionsAnyGenerated.matrix,
663
- number: _pureFunctionsAnyGenerated.number,
675
+ variance: (0, _factoriesAny.createVarianceTransform)({
676
+ add: _pureFunctionsAnyGenerated.add,
677
+ divide: _pureFunctionsAnyGenerated.divide,
678
+ isNaN: _pureFunctionsAnyGenerated.isNaN,
679
+ mapSlices: _pureFunctionsAnyGenerated.mapSlices,
680
+ multiply: _pureFunctionsAnyGenerated.multiply,
664
681
  subtract: _pureFunctionsAnyGenerated.subtract,
665
682
  typed: _pureFunctionsAnyGenerated.typed
666
683
  }),
667
- max: (0, _factoriesAny.createMaxTransform)({
668
- config: _configReadonly.config,
669
- isNaN: _pureFunctionsAnyGenerated.isNaN,
684
+ index: (0, _factoriesAny.createIndexTransform)({
685
+ Index: _pureFunctionsAnyGenerated.Index,
686
+ getMatrixDataType: _pureFunctionsAnyGenerated.getMatrixDataType
687
+ }),
688
+ quantileSeq: (0, _factoriesAny.createQuantileSeqTransform)({
689
+ add: _pureFunctionsAnyGenerated.add,
690
+ bignumber: _pureFunctionsAnyGenerated.bignumber,
691
+ compare: _pureFunctionsAnyGenerated.compare,
692
+ divide: _pureFunctionsAnyGenerated.divide,
693
+ isInteger: _pureFunctionsAnyGenerated.isInteger,
670
694
  larger: _pureFunctionsAnyGenerated.larger,
671
- numeric: _pureFunctionsAnyGenerated.numeric,
695
+ mapSlices: _pureFunctionsAnyGenerated.mapSlices,
696
+ multiply: _pureFunctionsAnyGenerated.multiply,
697
+ partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
698
+ smaller: _pureFunctionsAnyGenerated.smaller,
699
+ smallerEq: _pureFunctionsAnyGenerated.smallerEq,
700
+ subtract: _pureFunctionsAnyGenerated.subtract,
672
701
  typed: _pureFunctionsAnyGenerated.typed
673
702
  }),
674
703
  range: (0, _factoriesAny.createRangeTransform)({
@@ -685,13 +714,13 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
685
714
  smallerEq: _pureFunctionsAnyGenerated.smallerEq,
686
715
  typed: _pureFunctionsAnyGenerated.typed
687
716
  }),
688
- row: (0, _factoriesAny.createRowTransform)({
717
+ column: (0, _factoriesAny.createColumnTransform)({
689
718
  Index: _pureFunctionsAnyGenerated.Index,
690
719
  matrix: _pureFunctionsAnyGenerated.matrix,
691
720
  range: _pureFunctionsAnyGenerated.range,
692
721
  typed: _pureFunctionsAnyGenerated.typed
693
722
  }),
694
- column: (0, _factoriesAny.createColumnTransform)({
723
+ row: (0, _factoriesAny.createRowTransform)({
695
724
  Index: _pureFunctionsAnyGenerated.Index,
696
725
  matrix: _pureFunctionsAnyGenerated.matrix,
697
726
  range: _pureFunctionsAnyGenerated.range,
@@ -702,30 +731,6 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
702
731
  divide: _pureFunctionsAnyGenerated.divide,
703
732
  typed: _pureFunctionsAnyGenerated.typed
704
733
  }),
705
- quantileSeq: (0, _factoriesAny.createQuantileSeqTransform)({
706
- add: _pureFunctionsAnyGenerated.add,
707
- bignumber: _pureFunctionsAnyGenerated.bignumber,
708
- compare: _pureFunctionsAnyGenerated.compare,
709
- divide: _pureFunctionsAnyGenerated.divide,
710
- isInteger: _pureFunctionsAnyGenerated.isInteger,
711
- larger: _pureFunctionsAnyGenerated.larger,
712
- mapSlices: _pureFunctionsAnyGenerated.mapSlices,
713
- multiply: _pureFunctionsAnyGenerated.multiply,
714
- partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
715
- smaller: _pureFunctionsAnyGenerated.smaller,
716
- smallerEq: _pureFunctionsAnyGenerated.smallerEq,
717
- subtract: _pureFunctionsAnyGenerated.subtract,
718
- typed: _pureFunctionsAnyGenerated.typed
719
- }),
720
- variance: (0, _factoriesAny.createVarianceTransform)({
721
- add: _pureFunctionsAnyGenerated.add,
722
- divide: _pureFunctionsAnyGenerated.divide,
723
- isNaN: _pureFunctionsAnyGenerated.isNaN,
724
- mapSlices: _pureFunctionsAnyGenerated.mapSlices,
725
- multiply: _pureFunctionsAnyGenerated.multiply,
726
- subtract: _pureFunctionsAnyGenerated.subtract,
727
- typed: _pureFunctionsAnyGenerated.typed
728
- }),
729
734
  std: (0, _factoriesAny.createStdTransform)({
730
735
  map: _pureFunctionsAnyGenerated.map,
731
736
  sqrt: _pureFunctionsAnyGenerated.sqrt,
@@ -748,19 +753,19 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
748
753
  ArrayNode,
749
754
  BlockNode,
750
755
  ConditionalNode,
751
- ConstantNode,
752
756
  DenseMatrix: _pureFunctionsAnyGenerated.DenseMatrix,
753
757
  RangeNode,
754
758
  Chain,
755
759
  FunctionAssignmentNode,
756
760
  SparseMatrix: _pureFunctionsAnyGenerated.SparseMatrix,
761
+ ConstantNode,
762
+ IndexNode,
763
+ FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
757
764
  ImmutableDenseMatrix: _pureFunctionsAnyGenerated.ImmutableDenseMatrix,
758
765
  Index: _pureFunctionsAnyGenerated.Index,
766
+ Spa: _pureFunctionsAnyGenerated.Spa,
759
767
  AccessorNode,
760
768
  AssignmentNode,
761
- FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
762
- IndexNode,
763
- Spa: _pureFunctionsAnyGenerated.Spa,
764
769
  Unit: _pureFunctionsAnyGenerated.Unit,
765
770
  SymbolNode,
766
771
  FunctionNode,