mathjs 15.0.0 → 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 (114) hide show
  1. package/HISTORY.md +22 -6
  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/entry/dependenciesAny/dependenciesBernoulli.generated.js +25 -0
  7. package/lib/cjs/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
  8. package/lib/cjs/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
  9. package/lib/cjs/entry/dependenciesAny/dependenciesIsBounded.generated.js +17 -0
  10. package/lib/cjs/entry/dependenciesAny/dependenciesIsFinite.generated.js +21 -0
  11. package/lib/cjs/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
  12. package/lib/cjs/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
  13. package/lib/cjs/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
  14. package/lib/cjs/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
  15. package/lib/cjs/entry/dependenciesAny.generated.js +21 -0
  16. package/lib/cjs/entry/dependenciesNumber/dependenciesBernoulli.generated.js +21 -0
  17. package/lib/cjs/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
  18. package/lib/cjs/entry/dependenciesNumber/dependenciesIsBounded.generated.js +17 -0
  19. package/lib/cjs/entry/dependenciesNumber/dependenciesIsFinite.generated.js +21 -0
  20. package/lib/cjs/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
  21. package/lib/cjs/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
  22. package/lib/cjs/entry/dependenciesNumber.generated.js +21 -0
  23. package/lib/cjs/entry/impureFunctionsAny.generated.js +217 -212
  24. package/lib/cjs/entry/impureFunctionsNumber.generated.js +82 -77
  25. package/lib/cjs/entry/pureFunctionsAny.generated.js +668 -652
  26. package/lib/cjs/entry/pureFunctionsNumber.generated.js +155 -140
  27. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +6 -0
  28. package/lib/cjs/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
  29. package/lib/cjs/expression/embeddedDocs/function/probability/bernoulli.js +14 -0
  30. package/lib/cjs/expression/embeddedDocs/function/utils/isBounded.js +14 -0
  31. package/lib/cjs/expression/embeddedDocs/function/utils/isFinite.js +14 -0
  32. package/lib/cjs/expression/embeddedDocs/function/utils/isNaN.js +1 -1
  33. package/lib/cjs/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
  34. package/lib/cjs/expression/node/AccessorNode.js +36 -7
  35. package/lib/cjs/expression/node/ConstantNode.js +4 -4
  36. package/lib/cjs/expression/node/FunctionNode.js +20 -5
  37. package/lib/cjs/expression/parse.js +36 -12
  38. package/lib/cjs/factoriesAny.js +21 -0
  39. package/lib/cjs/factoriesNumber.js +23 -2
  40. package/lib/cjs/function/algebra/simplifyConstant.js +3 -2
  41. package/lib/cjs/function/arithmetic/nthRoots.js +5 -1
  42. package/lib/cjs/function/probability/bernoulli.js +108 -0
  43. package/lib/cjs/function/relational/equal.js +2 -3
  44. package/lib/cjs/function/special/zeta.js +3 -2
  45. package/lib/cjs/function/utils/isBounded.js +54 -0
  46. package/lib/cjs/function/utils/isFinite.js +50 -0
  47. package/lib/cjs/function/utils/isInteger.js +7 -15
  48. package/lib/cjs/function/utils/isNaN.js +1 -1
  49. package/lib/cjs/function/utils/isNumeric.js +1 -1
  50. package/lib/cjs/header.js +2 -2
  51. package/lib/cjs/json/replacer.js +1 -1
  52. package/lib/cjs/plain/number/probability.js +2 -2
  53. package/lib/cjs/plain/number/trigonometry.js +1 -1
  54. package/lib/cjs/type/fraction/function/fraction.js +1 -1
  55. package/lib/cjs/type/matrix/SparseMatrix.js +24 -4
  56. package/lib/cjs/type/unit/Unit.js +12 -8
  57. package/lib/cjs/utils/number.js +7 -7
  58. package/lib/cjs/utils/optimizeCallback.js +13 -1
  59. package/lib/cjs/version.js +1 -1
  60. package/lib/esm/entry/dependenciesAny/dependenciesBernoulli.generated.js +18 -0
  61. package/lib/esm/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
  62. package/lib/esm/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
  63. package/lib/esm/entry/dependenciesAny/dependenciesIsBounded.generated.js +10 -0
  64. package/lib/esm/entry/dependenciesAny/dependenciesIsFinite.generated.js +14 -0
  65. package/lib/esm/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
  66. package/lib/esm/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
  67. package/lib/esm/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
  68. package/lib/esm/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
  69. package/lib/esm/entry/dependenciesAny.generated.js +3 -0
  70. package/lib/esm/entry/dependenciesNumber/dependenciesBernoulli.generated.js +14 -0
  71. package/lib/esm/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
  72. package/lib/esm/entry/dependenciesNumber/dependenciesIsBounded.generated.js +10 -0
  73. package/lib/esm/entry/dependenciesNumber/dependenciesIsFinite.generated.js +14 -0
  74. package/lib/esm/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
  75. package/lib/esm/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
  76. package/lib/esm/entry/dependenciesNumber.generated.js +3 -0
  77. package/lib/esm/entry/impureFunctionsAny.generated.js +219 -214
  78. package/lib/esm/entry/impureFunctionsNumber.generated.js +84 -79
  79. package/lib/esm/entry/pureFunctionsAny.generated.js +665 -649
  80. package/lib/esm/entry/pureFunctionsNumber.generated.js +154 -139
  81. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +6 -0
  82. package/lib/esm/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
  83. package/lib/esm/expression/embeddedDocs/function/probability/bernoulli.js +8 -0
  84. package/lib/esm/expression/embeddedDocs/function/utils/isBounded.js +8 -0
  85. package/lib/esm/expression/embeddedDocs/function/utils/isFinite.js +8 -0
  86. package/lib/esm/expression/embeddedDocs/function/utils/isNaN.js +1 -1
  87. package/lib/esm/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
  88. package/lib/esm/expression/node/AccessorNode.js +36 -7
  89. package/lib/esm/expression/node/ConstantNode.js +4 -4
  90. package/lib/esm/expression/node/FunctionNode.js +20 -5
  91. package/lib/esm/expression/parse.js +36 -12
  92. package/lib/esm/factoriesAny.js +3 -0
  93. package/lib/esm/factoriesNumber.js +3 -0
  94. package/lib/esm/function/algebra/simplifyConstant.js +3 -2
  95. package/lib/esm/function/arithmetic/nthRoots.js +5 -1
  96. package/lib/esm/function/probability/bernoulli.js +102 -0
  97. package/lib/esm/function/relational/equal.js +2 -3
  98. package/lib/esm/function/special/zeta.js +3 -2
  99. package/lib/esm/function/utils/isBounded.js +48 -0
  100. package/lib/esm/function/utils/isFinite.js +44 -0
  101. package/lib/esm/function/utils/isInteger.js +7 -15
  102. package/lib/esm/function/utils/isNaN.js +1 -1
  103. package/lib/esm/function/utils/isNumeric.js +1 -1
  104. package/lib/esm/json/replacer.js +1 -1
  105. package/lib/esm/plain/number/probability.js +2 -2
  106. package/lib/esm/plain/number/trigonometry.js +1 -1
  107. package/lib/esm/type/fraction/function/fraction.js +1 -1
  108. package/lib/esm/type/matrix/SparseMatrix.js +24 -4
  109. package/lib/esm/type/unit/Unit.js +12 -8
  110. package/lib/esm/utils/number.js +7 -7
  111. package/lib/esm/utils/optimizeCallback.js +13 -1
  112. package/lib/esm/version.js +1 -1
  113. package/package.json +8 -8
  114. 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,10 @@ 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
+ });
75
76
  const IndexNode = exports.IndexNode = (0, _factoriesAny.createIndexNode)({
76
77
  Node,
77
78
  size: _pureFunctionsAnyGenerated.size
@@ -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,
@@ -348,15 +351,16 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
348
351
  cosh: _pureFunctionsAnyGenerated.cosh,
349
352
  csch: _pureFunctionsAnyGenerated.csch,
350
353
  dot: _pureFunctionsAnyGenerated.dot,
351
- isNaN: _pureFunctionsAnyGenerated.isNaN,
352
- isPrime: _pureFunctionsAnyGenerated.isPrime,
353
- mapSlices: _pureFunctionsAnyGenerated.mapSlices,
354
+ hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
355
+ isFinite: _pureFunctionsAnyGenerated.isFinite,
356
+ isNegative: _pureFunctionsAnyGenerated.isNegative,
357
+ isZero: _pureFunctionsAnyGenerated.isZero,
354
358
  matrix: _pureFunctionsAnyGenerated.matrix,
355
359
  matrixFromFunction: _pureFunctionsAnyGenerated.matrixFromFunction,
356
360
  multiply: _pureFunctionsAnyGenerated.multiply,
357
361
  ones: _pureFunctionsAnyGenerated.ones,
358
362
  randomInt: _pureFunctionsAnyGenerated.randomInt,
359
- reshape: _pureFunctionsAnyGenerated.reshape,
363
+ resize: _pureFunctionsAnyGenerated.resize,
360
364
  sech: _pureFunctionsAnyGenerated.sech,
361
365
  sinh: _pureFunctionsAnyGenerated.sinh,
362
366
  sparse: _pureFunctionsAnyGenerated.sparse,
@@ -369,205 +373,205 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
369
373
  acoth: _pureFunctionsAnyGenerated.acoth,
370
374
  asin: _pureFunctionsAnyGenerated.asin,
371
375
  bin: _pureFunctionsAnyGenerated.bin,
372
- concat: _pureFunctionsAnyGenerated.concat,
373
376
  coth: _pureFunctionsAnyGenerated.coth,
374
377
  ctranspose: _pureFunctionsAnyGenerated.ctranspose,
375
378
  diag: _pureFunctionsAnyGenerated.diag,
376
- dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
377
379
  equal: _pureFunctionsAnyGenerated.equal,
378
380
  fraction: _pureFunctionsAnyGenerated.fraction,
379
381
  identity: _pureFunctionsAnyGenerated.identity,
380
- isNumeric: _pureFunctionsAnyGenerated.isNumeric,
382
+ isInteger: _pureFunctionsAnyGenerated.isInteger,
381
383
  kron: _pureFunctionsAnyGenerated.kron,
382
- largerEq: _pureFunctionsAnyGenerated.largerEq,
383
- leftShift: _pureFunctionsAnyGenerated.leftShift,
384
- matrixFromRows: _pureFunctionsAnyGenerated.matrixFromRows,
385
- mode: _pureFunctionsAnyGenerated.mode,
386
- nthRoot: _pureFunctionsAnyGenerated.nthRoot,
384
+ mapSlices: _pureFunctionsAnyGenerated.mapSlices,
385
+ matrixFromColumns: _pureFunctionsAnyGenerated.matrixFromColumns,
387
386
  numeric: _pureFunctionsAnyGenerated.numeric,
388
387
  prod: _pureFunctionsAnyGenerated.prod,
389
- resize: _pureFunctionsAnyGenerated.resize,
390
- rightArithShift: _pureFunctionsAnyGenerated.rightArithShift,
388
+ reshape: _pureFunctionsAnyGenerated.reshape,
391
389
  round: _pureFunctionsAnyGenerated.round,
392
- smaller: _pureFunctionsAnyGenerated.smaller,
393
- to: _pureFunctionsAnyGenerated.to,
394
390
  unaryMinus: _pureFunctionsAnyGenerated.unaryMinus,
395
- unequal: _pureFunctionsAnyGenerated.unequal,
396
- xor: _pureFunctionsAnyGenerated.xor,
397
- add: _pureFunctionsAnyGenerated.add,
398
- atan2: _pureFunctionsAnyGenerated.atan2,
399
- bitAnd: _pureFunctionsAnyGenerated.bitAnd,
400
- bitOr: _pureFunctionsAnyGenerated.bitOr,
401
- bitXor: _pureFunctionsAnyGenerated.bitXor,
391
+ bernoulli: _pureFunctionsAnyGenerated.bernoulli,
402
392
  cbrt: _pureFunctionsAnyGenerated.cbrt,
403
- compare: _pureFunctionsAnyGenerated.compare,
404
- compareText: _pureFunctionsAnyGenerated.compareText,
393
+ concat: _pureFunctionsAnyGenerated.concat,
405
394
  count: _pureFunctionsAnyGenerated.count,
406
395
  deepEqual: _pureFunctionsAnyGenerated.deepEqual,
407
396
  divideScalar: _pureFunctionsAnyGenerated.divideScalar,
408
- equalText: _pureFunctionsAnyGenerated.equalText,
397
+ dotMultiply: _pureFunctionsAnyGenerated.dotMultiply,
409
398
  floor: _pureFunctionsAnyGenerated.floor,
410
399
  gcd: _pureFunctionsAnyGenerated.gcd,
411
- hasNumericValue: _pureFunctionsAnyGenerated.hasNumericValue,
412
- hypot: _pureFunctionsAnyGenerated.hypot,
400
+ isPositive: _pureFunctionsAnyGenerated.isPositive,
413
401
  larger: _pureFunctionsAnyGenerated.larger,
414
- log: _pureFunctionsAnyGenerated.log,
402
+ lcm: _pureFunctionsAnyGenerated.lcm,
403
+ leftShift: _pureFunctionsAnyGenerated.leftShift,
415
404
  lsolve: _pureFunctionsAnyGenerated.lsolve,
416
- matrixFromColumns: _pureFunctionsAnyGenerated.matrixFromColumns,
417
- min: _pureFunctionsAnyGenerated.min,
405
+ max: _pureFunctionsAnyGenerated.max,
418
406
  mod: _pureFunctionsAnyGenerated.mod,
419
- nthRoots: _pureFunctionsAnyGenerated.nthRoots,
407
+ nthRoot: _pureFunctionsAnyGenerated.nthRoot,
420
408
  nullish: _pureFunctionsAnyGenerated.nullish,
421
409
  or: _pureFunctionsAnyGenerated.or,
422
- partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
423
410
  qr: _pureFunctionsAnyGenerated.qr,
424
- rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
425
- smallerEq: _pureFunctionsAnyGenerated.smallerEq,
426
- subset: _pureFunctionsAnyGenerated.subset,
411
+ rightArithShift: _pureFunctionsAnyGenerated.rightArithShift,
412
+ smaller: _pureFunctionsAnyGenerated.smaller,
427
413
  subtract: _pureFunctionsAnyGenerated.subtract,
428
- trace: _pureFunctionsAnyGenerated.trace,
414
+ to: _pureFunctionsAnyGenerated.to,
415
+ unaryPlus: _pureFunctionsAnyGenerated.unaryPlus,
429
416
  usolve: _pureFunctionsAnyGenerated.usolve,
430
- zpk2tf: _pureFunctionsAnyGenerated.zpk2tf,
417
+ xor: _pureFunctionsAnyGenerated.xor,
418
+ add: _pureFunctionsAnyGenerated.add,
419
+ atan2: _pureFunctionsAnyGenerated.atan2,
420
+ bitAnd: _pureFunctionsAnyGenerated.bitAnd,
421
+ bitOr: _pureFunctionsAnyGenerated.bitOr,
422
+ bitXor: _pureFunctionsAnyGenerated.bitXor,
431
423
  catalan: _pureFunctionsAnyGenerated.catalan,
432
- compareNatural: _pureFunctionsAnyGenerated.compareNatural,
424
+ compare: _pureFunctionsAnyGenerated.compare,
425
+ compareText: _pureFunctionsAnyGenerated.compareText,
433
426
  composition: _pureFunctionsAnyGenerated.composition,
434
427
  cross: _pureFunctionsAnyGenerated.cross,
435
428
  det: _pureFunctionsAnyGenerated.det,
436
429
  diff: _pureFunctionsAnyGenerated.diff,
437
430
  distance: _pureFunctionsAnyGenerated.distance,
438
431
  dotDivide: _pureFunctionsAnyGenerated.dotDivide,
439
- index: _pureFunctionsAnyGenerated.index,
432
+ equalText: _pureFunctionsAnyGenerated.equalText,
433
+ hypot: _pureFunctionsAnyGenerated.hypot,
440
434
  intersect: _pureFunctionsAnyGenerated.intersect,
441
435
  invmod: _pureFunctionsAnyGenerated.invmod,
442
- lcm: _pureFunctionsAnyGenerated.lcm,
443
- log1p: _pureFunctionsAnyGenerated.log1p,
436
+ largerEq: _pureFunctionsAnyGenerated.largerEq,
437
+ log: _pureFunctionsAnyGenerated.log,
444
438
  lsolveAll: _pureFunctionsAnyGenerated.lsolveAll,
445
- max: _pureFunctionsAnyGenerated.max,
446
- range: _pureFunctionsAnyGenerated.range,
447
- row: _pureFunctionsAnyGenerated.row,
448
- setCartesian: _pureFunctionsAnyGenerated.setCartesian,
449
- setDistinct: _pureFunctionsAnyGenerated.setDistinct,
450
- setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
451
- setPowerset: _pureFunctionsAnyGenerated.setPowerset,
439
+ matrixFromRows: _pureFunctionsAnyGenerated.matrixFromRows,
440
+ min: _pureFunctionsAnyGenerated.min,
441
+ nthRoots: _pureFunctionsAnyGenerated.nthRoots,
442
+ partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
443
+ rightLogShift: _pureFunctionsAnyGenerated.rightLogShift,
452
444
  slu: _pureFunctionsAnyGenerated.slu,
453
- sort: _pureFunctionsAnyGenerated.sort,
454
- unaryPlus: _pureFunctionsAnyGenerated.unaryPlus,
445
+ subset: _pureFunctionsAnyGenerated.subset,
446
+ sum: _pureFunctionsAnyGenerated.sum,
447
+ trace: _pureFunctionsAnyGenerated.trace,
455
448
  usolveAll: _pureFunctionsAnyGenerated.usolveAll,
456
- and: _pureFunctionsAnyGenerated.and,
449
+ zpk2tf: _pureFunctionsAnyGenerated.zpk2tf,
457
450
  ceil: _pureFunctionsAnyGenerated.ceil,
458
- column: _pureFunctionsAnyGenerated.column,
451
+ compareNatural: _pureFunctionsAnyGenerated.compareNatural,
459
452
  cumsum: _pureFunctionsAnyGenerated.cumsum,
460
453
  fix: _pureFunctionsAnyGenerated.fix,
461
- setDifference: _pureFunctionsAnyGenerated.setDifference,
462
- setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
463
- setSymDifference: _pureFunctionsAnyGenerated.setSymDifference,
464
- sum: _pureFunctionsAnyGenerated.sum,
454
+ index: _pureFunctionsAnyGenerated.index,
465
455
  inv: _pureFunctionsAnyGenerated.inv,
456
+ log1p: _pureFunctionsAnyGenerated.log1p,
466
457
  lup: _pureFunctionsAnyGenerated.lup,
467
458
  pinv: _pureFunctionsAnyGenerated.pinv,
468
459
  pow: _pureFunctionsAnyGenerated.pow,
469
- setIntersect: _pureFunctionsAnyGenerated.setIntersect,
470
- setUnion: _pureFunctionsAnyGenerated.setUnion,
460
+ setCartesian: _pureFunctionsAnyGenerated.setCartesian,
461
+ setDistinct: _pureFunctionsAnyGenerated.setDistinct,
462
+ setIsSubset: _pureFunctionsAnyGenerated.setIsSubset,
463
+ setPowerset: _pureFunctionsAnyGenerated.setPowerset,
464
+ smallerEq: _pureFunctionsAnyGenerated.smallerEq,
465
+ sort: _pureFunctionsAnyGenerated.sort,
471
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,
483
+ setDifference: _pureFunctionsAnyGenerated.setDifference,
484
+ setMultiplicity: _pureFunctionsAnyGenerated.setMultiplicity,
485
+ setSymDifference: _pureFunctionsAnyGenerated.setSymDifference,
486
+ solveODE: _pureFunctionsAnyGenerated.solveODE,
472
487
  vacuumImpedance: _pureFunctionsAnyGenerated.vacuumImpedance,
473
- wienDisplacement: _pureFunctionsAnyGenerated.wienDisplacement,
474
488
  atomicMass: _pureFunctionsAnyGenerated.atomicMass,
475
489
  bohrMagneton: _pureFunctionsAnyGenerated.bohrMagneton,
476
490
  boltzmann: _pureFunctionsAnyGenerated.boltzmann,
491
+ column: _pureFunctionsAnyGenerated.column,
477
492
  conductanceQuantum: _pureFunctionsAnyGenerated.conductanceQuantum,
478
493
  coulomb: _pureFunctionsAnyGenerated.coulomb,
479
494
  createUnit: _pureFunctionsAnyGenerated.createUnit,
480
495
  deuteronMass: _pureFunctionsAnyGenerated.deuteronMass,
481
- dotPow: _pureFunctionsAnyGenerated.dotPow,
482
- electricConstant: _pureFunctionsAnyGenerated.electricConstant,
483
- elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
484
- expm: _pureFunctionsAnyGenerated.expm,
485
- faraday: _pureFunctionsAnyGenerated.faraday,
486
- fft: _pureFunctionsAnyGenerated.fft,
487
- gamma: _pureFunctionsAnyGenerated.gamma,
488
- gravitationConstant: _pureFunctionsAnyGenerated.gravitationConstant,
489
- hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
490
- ifft: _pureFunctionsAnyGenerated.ifft,
496
+ eigs: _pureFunctionsAnyGenerated.eigs,
497
+ electronMass: _pureFunctionsAnyGenerated.electronMass,
498
+ factorial: _pureFunctionsAnyGenerated.factorial,
499
+ fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
500
+ gasConstant: _pureFunctionsAnyGenerated.gasConstant,
501
+ gravity: _pureFunctionsAnyGenerated.gravity,
491
502
  klitzing: _pureFunctionsAnyGenerated.klitzing,
492
503
  loschmidt: _pureFunctionsAnyGenerated.loschmidt,
493
- magneticConstant: _pureFunctionsAnyGenerated.magneticConstant,
504
+ mad: _pureFunctionsAnyGenerated.mad,
505
+ magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
494
506
  molarMass: _pureFunctionsAnyGenerated.molarMass,
495
507
  molarPlanckConstant: _pureFunctionsAnyGenerated.molarPlanckConstant,
496
- neutronMass: _pureFunctionsAnyGenerated.neutronMass,
497
- nuclearMagneton: _pureFunctionsAnyGenerated.nuclearMagneton,
498
- planckCharge: _pureFunctionsAnyGenerated.planckCharge,
499
- planckLength: _pureFunctionsAnyGenerated.planckLength,
500
- planckTemperature: _pureFunctionsAnyGenerated.planckTemperature,
501
- protonMass: _pureFunctionsAnyGenerated.protonMass,
502
- 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,
503
514
  reducedPlanckConstant: _pureFunctionsAnyGenerated.reducedPlanckConstant,
515
+ rotationMatrix: _pureFunctionsAnyGenerated.rotationMatrix,
504
516
  rydberg: _pureFunctionsAnyGenerated.rydberg,
505
517
  secondRadiation: _pureFunctionsAnyGenerated.secondRadiation,
518
+ setSize: _pureFunctionsAnyGenerated.setSize,
506
519
  speedOfLight: _pureFunctionsAnyGenerated.speedOfLight,
507
520
  stefanBoltzmann: _pureFunctionsAnyGenerated.stefanBoltzmann,
508
521
  thomsonCrossSection: _pureFunctionsAnyGenerated.thomsonCrossSection,
522
+ variance: _pureFunctionsAnyGenerated.variance,
523
+ zeta: _pureFunctionsAnyGenerated.zeta,
509
524
  avogadro: _pureFunctionsAnyGenerated.avogadro,
510
525
  bohrRadius: _pureFunctionsAnyGenerated.bohrRadius,
511
- coulombConstant: _pureFunctionsAnyGenerated.coulombConstant,
512
- divide: _pureFunctionsAnyGenerated.divide,
513
- electronMass: _pureFunctionsAnyGenerated.electronMass,
514
- factorial: _pureFunctionsAnyGenerated.factorial,
515
- firstRadiation: _pureFunctionsAnyGenerated.firstRadiation,
516
- gravity: _pureFunctionsAnyGenerated.gravity,
526
+ corr: _pureFunctionsAnyGenerated.corr,
527
+ dotPow: _pureFunctionsAnyGenerated.dotPow,
528
+ elementaryCharge: _pureFunctionsAnyGenerated.elementaryCharge,
529
+ faraday: _pureFunctionsAnyGenerated.faraday,
530
+ hartreeEnergy: _pureFunctionsAnyGenerated.hartreeEnergy,
517
531
  inverseConductanceQuantum: _pureFunctionsAnyGenerated.inverseConductanceQuantum,
518
- lusolve: _pureFunctionsAnyGenerated.lusolve,
519
- magneticFluxQuantum: _pureFunctionsAnyGenerated.magneticFluxQuantum,
532
+ magneticConstant: _pureFunctionsAnyGenerated.magneticConstant,
520
533
  molarMassC12: _pureFunctionsAnyGenerated.molarMassC12,
521
- multinomial: _pureFunctionsAnyGenerated.multinomial,
534
+ neutronMass: _pureFunctionsAnyGenerated.neutronMass,
522
535
  parse,
523
- permutations: _pureFunctionsAnyGenerated.permutations,
524
- planckMass: _pureFunctionsAnyGenerated.planckMass,
525
- polynomialRoot: _pureFunctionsAnyGenerated.polynomialRoot,
536
+ planckCharge: _pureFunctionsAnyGenerated.planckCharge,
537
+ planckTemperature: _pureFunctionsAnyGenerated.planckTemperature,
538
+ quantumOfCirculation: _pureFunctionsAnyGenerated.quantumOfCirculation,
526
539
  resolve,
527
- setSize: _pureFunctionsAnyGenerated.setSize,
540
+ setIntersect: _pureFunctionsAnyGenerated.setIntersect,
528
541
  simplifyConstant,
529
- solveODE: _pureFunctionsAnyGenerated.solveODE,
542
+ std: _pureFunctionsAnyGenerated.std,
530
543
  stirlingS2: _pureFunctionsAnyGenerated.stirlingS2,
531
544
  unit: _pureFunctionsAnyGenerated.unit,
532
545
  bellNumbers: _pureFunctionsAnyGenerated.bellNumbers,
533
546
  compile,
534
- eigs: _pureFunctionsAnyGenerated.eigs,
535
- fermiCoupling: _pureFunctionsAnyGenerated.fermiCoupling,
536
- gasConstant: _pureFunctionsAnyGenerated.gasConstant,
537
- kldivergence: _pureFunctionsAnyGenerated.kldivergence,
538
- mean: _pureFunctionsAnyGenerated.mean,
539
- molarVolume: _pureFunctionsAnyGenerated.molarVolume,
540
- planckConstant: _pureFunctionsAnyGenerated.planckConstant,
541
- 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,
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,16 +593,16 @@ 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,
600
- matrix: _pureFunctionsAnyGenerated.matrix,
601
- typed: _pureFunctionsAnyGenerated.typed
596
+ cumsum: (0, _factoriesAny.createCumSumTransform)({
597
+ add: _pureFunctionsAnyGenerated.add,
598
+ typed: _pureFunctionsAnyGenerated.typed,
599
+ unaryPlus: _pureFunctionsAnyGenerated.unaryPlus
602
600
  }),
603
- max: (0, _factoriesAny.createMaxTransform)({
604
- config: _configReadonly.config,
605
- isNaN: _pureFunctionsAnyGenerated.isNaN,
606
- larger: _pureFunctionsAnyGenerated.larger,
607
- numeric: _pureFunctionsAnyGenerated.numeric,
601
+ nullish: (0, _factoriesAny.createNullishTransform)({
602
+ deepEqual: _pureFunctionsAnyGenerated.deepEqual,
603
+ flatten: _pureFunctionsAnyGenerated.flatten,
604
+ matrix: _pureFunctionsAnyGenerated.matrix,
605
+ size: _pureFunctionsAnyGenerated.size,
608
606
  typed: _pureFunctionsAnyGenerated.typed
609
607
  }),
610
608
  print: (0, _factoriesAny.createPrintTransform)({
@@ -613,12 +611,6 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
613
611
  typed: _pureFunctionsAnyGenerated.typed,
614
612
  zeros: _pureFunctionsAnyGenerated.zeros
615
613
  }),
616
- sum: (0, _factoriesAny.createSumTransform)({
617
- add: _pureFunctionsAnyGenerated.add,
618
- config: _configReadonly.config,
619
- numeric: _pureFunctionsAnyGenerated.numeric,
620
- typed: _pureFunctionsAnyGenerated.typed
621
- }),
622
614
  bitAnd: (0, _factoriesAny.createBitAndTransform)({
623
615
  add: _pureFunctionsAnyGenerated.add,
624
616
  concat: _pureFunctionsAnyGenerated.concat,
@@ -628,6 +620,25 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
628
620
  typed: _pureFunctionsAnyGenerated.typed,
629
621
  zeros: _pureFunctionsAnyGenerated.zeros
630
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
+ }),
631
642
  min: (0, _factoriesAny.createMinTransform)({
632
643
  config: _configReadonly.config,
633
644
  isNaN: _pureFunctionsAnyGenerated.isNaN,
@@ -635,11 +646,11 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
635
646
  smaller: _pureFunctionsAnyGenerated.smaller,
636
647
  typed: _pureFunctionsAnyGenerated.typed
637
648
  }),
638
- nullish: (0, _factoriesAny.createNullishTransform)({
639
- deepEqual: _pureFunctionsAnyGenerated.deepEqual,
640
- flatten: _pureFunctionsAnyGenerated.flatten,
649
+ or: (0, _factoriesAny.createOrTransform)({
650
+ DenseMatrix: _pureFunctionsAnyGenerated.DenseMatrix,
651
+ concat: _pureFunctionsAnyGenerated.concat,
652
+ equalScalar: _pureFunctionsAnyGenerated.equalScalar,
641
653
  matrix: _pureFunctionsAnyGenerated.matrix,
642
- size: _pureFunctionsAnyGenerated.size,
643
654
  typed: _pureFunctionsAnyGenerated.typed
644
655
  }),
645
656
  subset: (0, _factoriesAny.createSubsetTransform)({
@@ -655,10 +666,18 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
655
666
  matrix: _pureFunctionsAnyGenerated.matrix,
656
667
  typed: _pureFunctionsAnyGenerated.typed
657
668
  }),
658
- diff: (0, _factoriesAny.createDiffTransform)({
659
- bignumber: _pureFunctionsAnyGenerated.bignumber,
660
- matrix: _pureFunctionsAnyGenerated.matrix,
661
- number: _pureFunctionsAnyGenerated.number,
669
+ sum: (0, _factoriesAny.createSumTransform)({
670
+ add: _pureFunctionsAnyGenerated.add,
671
+ config: _configReadonly.config,
672
+ numeric: _pureFunctionsAnyGenerated.numeric,
673
+ typed: _pureFunctionsAnyGenerated.typed
674
+ }),
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,
662
681
  subtract: _pureFunctionsAnyGenerated.subtract,
663
682
  typed: _pureFunctionsAnyGenerated.typed
664
683
  }),
@@ -666,6 +685,21 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
666
685
  Index: _pureFunctionsAnyGenerated.Index,
667
686
  getMatrixDataType: _pureFunctionsAnyGenerated.getMatrixDataType
668
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,
694
+ larger: _pureFunctionsAnyGenerated.larger,
695
+ mapSlices: _pureFunctionsAnyGenerated.mapSlices,
696
+ multiply: _pureFunctionsAnyGenerated.multiply,
697
+ partitionSelect: _pureFunctionsAnyGenerated.partitionSelect,
698
+ smaller: _pureFunctionsAnyGenerated.smaller,
699
+ smallerEq: _pureFunctionsAnyGenerated.smallerEq,
700
+ subtract: _pureFunctionsAnyGenerated.subtract,
701
+ typed: _pureFunctionsAnyGenerated.typed
702
+ }),
669
703
  range: (0, _factoriesAny.createRangeTransform)({
670
704
  bignumber: _pureFunctionsAnyGenerated.bignumber,
671
705
  matrix: _pureFunctionsAnyGenerated.matrix,
@@ -680,52 +714,23 @@ const help = exports.help = (0, _factoriesAny.createHelp)({
680
714
  smallerEq: _pureFunctionsAnyGenerated.smallerEq,
681
715
  typed: _pureFunctionsAnyGenerated.typed
682
716
  }),
683
- row: (0, _factoriesAny.createRowTransform)({
717
+ column: (0, _factoriesAny.createColumnTransform)({
684
718
  Index: _pureFunctionsAnyGenerated.Index,
685
719
  matrix: _pureFunctionsAnyGenerated.matrix,
686
720
  range: _pureFunctionsAnyGenerated.range,
687
721
  typed: _pureFunctionsAnyGenerated.typed
688
722
  }),
689
- column: (0, _factoriesAny.createColumnTransform)({
723
+ row: (0, _factoriesAny.createRowTransform)({
690
724
  Index: _pureFunctionsAnyGenerated.Index,
691
725
  matrix: _pureFunctionsAnyGenerated.matrix,
692
726
  range: _pureFunctionsAnyGenerated.range,
693
727
  typed: _pureFunctionsAnyGenerated.typed
694
728
  }),
695
- cumsum: (0, _factoriesAny.createCumSumTransform)({
696
- add: _pureFunctionsAnyGenerated.add,
697
- typed: _pureFunctionsAnyGenerated.typed,
698
- unaryPlus: _pureFunctionsAnyGenerated.unaryPlus
699
- }),
700
729
  mean: (0, _factoriesAny.createMeanTransform)({
701
730
  add: _pureFunctionsAnyGenerated.add,
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,
757
762
  IndexNode,
763
+ FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
758
764
  ImmutableDenseMatrix: _pureFunctionsAnyGenerated.ImmutableDenseMatrix,
759
765
  Index: _pureFunctionsAnyGenerated.Index,
766
+ Spa: _pureFunctionsAnyGenerated.Spa,
760
767
  AccessorNode,
761
768
  AssignmentNode,
762
- FibonacciHeap: _pureFunctionsAnyGenerated.FibonacciHeap,
763
- Spa: _pureFunctionsAnyGenerated.Spa,
764
769
  Unit: _pureFunctionsAnyGenerated.Unit,
765
770
  SymbolNode,
766
771
  FunctionNode,