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.
- package/HISTORY.md +22 -6
- package/README.md +1 -1
- package/lib/browser/math.js +1 -1
- package/lib/browser/math.js.LICENSE.txt +2 -2
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/entry/dependenciesAny/dependenciesBernoulli.generated.js +25 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
- package/lib/cjs/entry/dependenciesAny/dependenciesIsBounded.generated.js +17 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesIsFinite.generated.js +21 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
- package/lib/cjs/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
- package/lib/cjs/entry/dependenciesAny.generated.js +21 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesBernoulli.generated.js +21 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesIsBounded.generated.js +17 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesIsFinite.generated.js +21 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/cjs/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
- package/lib/cjs/entry/dependenciesNumber.generated.js +21 -0
- package/lib/cjs/entry/impureFunctionsAny.generated.js +217 -212
- package/lib/cjs/entry/impureFunctionsNumber.generated.js +82 -77
- package/lib/cjs/entry/pureFunctionsAny.generated.js +668 -652
- package/lib/cjs/entry/pureFunctionsNumber.generated.js +155 -140
- package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +6 -0
- package/lib/cjs/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
- package/lib/cjs/expression/embeddedDocs/function/probability/bernoulli.js +14 -0
- package/lib/cjs/expression/embeddedDocs/function/utils/isBounded.js +14 -0
- package/lib/cjs/expression/embeddedDocs/function/utils/isFinite.js +14 -0
- package/lib/cjs/expression/embeddedDocs/function/utils/isNaN.js +1 -1
- package/lib/cjs/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
- package/lib/cjs/expression/node/AccessorNode.js +36 -7
- package/lib/cjs/expression/node/ConstantNode.js +4 -4
- package/lib/cjs/expression/node/FunctionNode.js +20 -5
- package/lib/cjs/expression/parse.js +36 -12
- package/lib/cjs/factoriesAny.js +21 -0
- package/lib/cjs/factoriesNumber.js +23 -2
- package/lib/cjs/function/algebra/simplifyConstant.js +3 -2
- package/lib/cjs/function/arithmetic/nthRoots.js +5 -1
- package/lib/cjs/function/probability/bernoulli.js +108 -0
- package/lib/cjs/function/relational/equal.js +2 -3
- package/lib/cjs/function/special/zeta.js +3 -2
- package/lib/cjs/function/utils/isBounded.js +54 -0
- package/lib/cjs/function/utils/isFinite.js +50 -0
- package/lib/cjs/function/utils/isInteger.js +7 -15
- package/lib/cjs/function/utils/isNaN.js +1 -1
- package/lib/cjs/function/utils/isNumeric.js +1 -1
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/json/replacer.js +1 -1
- package/lib/cjs/plain/number/probability.js +2 -2
- package/lib/cjs/plain/number/trigonometry.js +1 -1
- package/lib/cjs/type/fraction/function/fraction.js +1 -1
- package/lib/cjs/type/matrix/SparseMatrix.js +24 -4
- package/lib/cjs/type/unit/Unit.js +12 -8
- package/lib/cjs/utils/number.js +7 -7
- package/lib/cjs/utils/optimizeCallback.js +13 -1
- package/lib/cjs/version.js +1 -1
- package/lib/esm/entry/dependenciesAny/dependenciesBernoulli.generated.js +18 -0
- package/lib/esm/entry/dependenciesAny/dependenciesConstantNode.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny/dependenciesEqual.generated.js +0 -2
- package/lib/esm/entry/dependenciesAny/dependenciesIsBounded.generated.js +10 -0
- package/lib/esm/entry/dependenciesAny/dependenciesIsFinite.generated.js +14 -0
- package/lib/esm/entry/dependenciesAny/dependenciesIsInteger.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny/dependenciesUnitClass.generated.js +0 -2
- package/lib/esm/entry/dependenciesAny/dependenciesZeta.generated.js +2 -0
- package/lib/esm/entry/dependenciesAny.generated.js +3 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesBernoulli.generated.js +14 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesConstantNode.generated.js +2 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesIsBounded.generated.js +10 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesIsFinite.generated.js +14 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesSimplifyConstant.generated.js +2 -0
- package/lib/esm/entry/dependenciesNumber/dependenciesZeta.generated.js +2 -0
- package/lib/esm/entry/dependenciesNumber.generated.js +3 -0
- package/lib/esm/entry/impureFunctionsAny.generated.js +219 -214
- package/lib/esm/entry/impureFunctionsNumber.generated.js +84 -79
- package/lib/esm/entry/pureFunctionsAny.generated.js +665 -649
- package/lib/esm/entry/pureFunctionsNumber.generated.js +154 -139
- package/lib/esm/expression/embeddedDocs/embeddedDocs.js +6 -0
- package/lib/esm/expression/embeddedDocs/function/combinatorics/stirlingS2.js +2 -2
- package/lib/esm/expression/embeddedDocs/function/probability/bernoulli.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/utils/isBounded.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/utils/isFinite.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/utils/isNaN.js +1 -1
- package/lib/esm/expression/embeddedDocs/function/utils/isNumeric.js +1 -1
- package/lib/esm/expression/node/AccessorNode.js +36 -7
- package/lib/esm/expression/node/ConstantNode.js +4 -4
- package/lib/esm/expression/node/FunctionNode.js +20 -5
- package/lib/esm/expression/parse.js +36 -12
- package/lib/esm/factoriesAny.js +3 -0
- package/lib/esm/factoriesNumber.js +3 -0
- package/lib/esm/function/algebra/simplifyConstant.js +3 -2
- package/lib/esm/function/arithmetic/nthRoots.js +5 -1
- package/lib/esm/function/probability/bernoulli.js +102 -0
- package/lib/esm/function/relational/equal.js +2 -3
- package/lib/esm/function/special/zeta.js +3 -2
- package/lib/esm/function/utils/isBounded.js +48 -0
- package/lib/esm/function/utils/isFinite.js +44 -0
- package/lib/esm/function/utils/isInteger.js +7 -15
- package/lib/esm/function/utils/isNaN.js +1 -1
- package/lib/esm/function/utils/isNumeric.js +1 -1
- package/lib/esm/json/replacer.js +1 -1
- package/lib/esm/plain/number/probability.js +2 -2
- package/lib/esm/plain/number/trigonometry.js +1 -1
- package/lib/esm/type/fraction/function/fraction.js +1 -1
- package/lib/esm/type/matrix/SparseMatrix.js +24 -4
- package/lib/esm/type/unit/Unit.js +12 -8
- package/lib/esm/utils/number.js +7 -7
- package/lib/esm/utils/optimizeCallback.js +13 -1
- package/lib/esm/version.js +1 -1
- package/package.json +8 -8
- package/types/index.d.ts +535 -223
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.zpk2tf = exports.zeta = exports.zeros = exports.xor = exports.xgcd = exports.wienDisplacement = void 0;
|
|
6
|
+
exports.dotMultiply = exports.dotDivide = exports.dot = exports.divideScalar = exports.divide = exports.distance = exports.diff = exports.diag = exports.deuteronMass = exports.det = exports.deepEqual = exports.cumsum = exports.cube = exports.ctranspose = exports.csch = exports.csc = exports.cross = exports.createUnit = exports.count = exports.coulombConstant = exports.coulomb = exports.coth = exports.cot = exports.cosh = exports.cos = exports.corr = exports.conj = exports.conductanceQuantum = exports.concat = exports.composition = exports.complex = exports.compareText = exports.compareNatural = exports.compare = exports.combinationsWithRep = exports.combinations = exports.column = exports.clone = exports.classicalElectronRadius = exports.ceil = exports.cbrt = exports.catalan = exports.boolean = exports.boltzmann = exports.bohrRadius = exports.bohrMagneton = exports.bitXor = exports.bitOr = exports.bitNot = exports.bitAnd = exports.bin = exports.bignumber = exports.bigint = exports.bernoulli = exports.bellNumbers = exports.avogadro = exports.atomicMass = exports.atanh = exports.atan2 = exports.atan = exports.asinh = exports.asin = exports.asech = exports.asec = exports.arg = exports.apply = exports.and = exports.addScalar = exports.add = exports.acsch = exports.acsc = exports.acoth = exports.acot = exports.acosh = exports.acos = exports.abs = exports._true = exports._null = exports._false = exports._NaN = exports._Infinity = exports.Unit = exports.SparseMatrix = exports.Spa = exports.SQRT2 = exports.SQRT1_2 = exports.ResultSet = exports.Range = exports.Matrix = exports.LOG2E = exports.LOG10E = exports.LN2 = exports.LN10 = exports.Index = exports.ImmutableDenseMatrix = exports.Fraction = exports.FibonacciHeap = exports.DenseMatrix = exports.Complex = exports.BigNumber = void 0;
|
|
7
|
+
exports.nthRoot = exports.not = exports.norm = exports.neutronMass = exports.multiplyScalar = exports.multiply = exports.multinomial = exports.molarVolume = exports.molarPlanckConstant = exports.molarMassC12 = exports.molarMass = exports.mode = exports.mod = exports.min = exports.median = exports.mean = exports.max = exports.matrixFromRows = exports.matrixFromFunction = exports.matrixFromColumns = exports.matrix = exports.mapSlices = exports.map = exports.magneticFluxQuantum = exports.magneticConstant = exports.mad = exports.lyap = exports.lusolve = exports.lup = exports.lsolveAll = exports.lsolve = exports.loschmidt = exports.log2 = exports.log1p = exports.log10 = exports.log = exports.lgamma = exports.leftShift = exports.lcm = exports.largerEq = exports.larger = exports.kron = exports.klitzing = exports.kldivergence = exports.isZero = exports.isPrime = exports.isPositive = exports.isNumeric = exports.isNegative = exports.isNaN = exports.isInteger = exports.isFinite = exports.isBounded = exports.invmod = exports.inverseConductanceQuantum = exports.inv = exports.intersect = exports.index = exports.im = exports.ifft = exports.identity = exports.i = exports.hypot = exports.hex = exports.hasNumericValue = exports.hartreeEnergy = exports.gravity = exports.gravitationConstant = exports.getMatrixDataType = exports.gcd = exports.gasConstant = exports.gamma = exports.freqz = exports.fraction = exports.format = exports.forEach = exports.floor = exports.flatten = exports.fix = exports.firstRadiation = exports.fineStructure = exports.filter = exports.fft = exports.fermiCoupling = exports.faraday = exports.factorial = exports.expm1 = exports.expm = exports.exp = exports.erf = exports.equalText = exports.equalScalar = exports.equal = exports.elementaryCharge = exports.electronMass = exports.electricConstant = exports.eigs = exports.efimovFactor = exports.e = exports.dotPow = void 0;
|
|
8
|
+
exports.vacuumImpedance = exports.usolveAll = exports.usolve = exports.unit = exports.unequal = exports.unaryPlus = exports.unaryMinus = exports.typed = exports.typeOf = exports.transpose = exports.trace = exports.toBest = exports.to = exports.thomsonCrossSection = exports.tau = exports.tanh = exports.tan = exports.sylvester = exports.sum = exports.subtractScalar = exports.subtract = exports.subset = exports.string = exports.stirlingS2 = exports.stefanBoltzmann = exports.std = exports.squeeze = exports.square = exports.sqrtm = exports.sqrt = exports.splitUnit = exports.speedOfLight = exports.sparse = exports.sort = exports.solveODE = exports.smallerEq = exports.smaller = exports.slu = exports.size = exports.sinh = exports.sin = exports.sign = exports.setUnion = exports.setSymDifference = exports.setSize = exports.setPowerset = exports.setMultiplicity = exports.setIsSubset = exports.setIntersect = exports.setDistinct = exports.setDifference = exports.setCartesian = exports.secondRadiation = exports.sech = exports.sec = exports.schur = exports.sackurTetrode = exports.rydberg = exports.row = exports.round = exports.rotationMatrix = exports.rotate = exports.rightLogShift = exports.rightArithShift = exports.resize = exports.reshape = exports.replacer = exports.reducedPlanckConstant = exports.re = exports.range = exports.randomInt = exports.random = exports.quantumOfCirculation = exports.quantileSeq = exports.qr = exports.protonMass = exports.prod = exports.print = exports.pow = exports.polynomialRoot = exports.planckTime = exports.planckTemperature = exports.planckMass = exports.planckLength = exports.planckConstant = exports.planckCharge = exports.pinv = exports.pickRandom = exports.pi = exports.phi = exports.permutations = exports.partitionSelect = exports.or = exports.ones = exports.oct = exports.numeric = exports.number = exports.nullish = exports.nuclearMagneton = exports.nthRoots = void 0;
|
|
9
|
+
exports.zpk2tf = exports.zeta = exports.zeros = exports.xor = exports.xgcd = exports.wienDisplacement = exports.weakMixingAngle = exports.version = exports.variance = void 0;
|
|
10
10
|
var _configReadonly = require("./configReadonly.js");
|
|
11
11
|
var _factoriesAny = require("../factoriesAny.js");
|
|
12
12
|
/**
|
|
@@ -213,19 +213,16 @@ const hex = exports.hex = /* #__PURE__ */(0, _factoriesAny.createHex)({
|
|
|
213
213
|
const im = exports.im = /* #__PURE__ */(0, _factoriesAny.createIm)({
|
|
214
214
|
typed
|
|
215
215
|
});
|
|
216
|
-
const
|
|
216
|
+
const isBounded = exports.isBounded = /* #__PURE__ */(0, _factoriesAny.createIsBounded)({
|
|
217
217
|
typed
|
|
218
218
|
});
|
|
219
|
-
const
|
|
220
|
-
config: _configReadonly.config,
|
|
219
|
+
const isNaN = exports.isNaN = /* #__PURE__ */(0, _factoriesAny.createIsNaN)({
|
|
221
220
|
typed
|
|
222
221
|
});
|
|
223
|
-
const
|
|
224
|
-
config: _configReadonly.config,
|
|
222
|
+
const isNumeric = exports.isNumeric = /* #__PURE__ */(0, _factoriesAny.createIsNumeric)({
|
|
225
223
|
typed
|
|
226
224
|
});
|
|
227
|
-
const
|
|
228
|
-
equalScalar,
|
|
225
|
+
const isPrime = exports.isPrime = /* #__PURE__ */(0, _factoriesAny.createIsPrime)({
|
|
229
226
|
typed
|
|
230
227
|
});
|
|
231
228
|
const LOG2E = exports.LOG2E = /* #__PURE__ */(0, _factoriesAny.createLOG2E)({
|
|
@@ -249,6 +246,11 @@ const log2 = exports.log2 = /* #__PURE__ */(0, _factoriesAny.createLog2)({
|
|
|
249
246
|
const map = exports.map = /* #__PURE__ */(0, _factoriesAny.createMap)({
|
|
250
247
|
typed
|
|
251
248
|
});
|
|
249
|
+
const mode = exports.mode = /* #__PURE__ */(0, _factoriesAny.createMode)({
|
|
250
|
+
isNaN,
|
|
251
|
+
isNumeric,
|
|
252
|
+
typed
|
|
253
|
+
});
|
|
252
254
|
const multiplyScalar = exports.multiplyScalar = /* #__PURE__ */(0, _factoriesAny.createMultiplyScalar)({
|
|
253
255
|
typed
|
|
254
256
|
});
|
|
@@ -354,17 +356,23 @@ const dot = exports.dot = /* #__PURE__ */(0, _factoriesAny.createDot)({
|
|
|
354
356
|
size,
|
|
355
357
|
typed
|
|
356
358
|
});
|
|
357
|
-
const
|
|
359
|
+
const hasNumericValue = exports.hasNumericValue = /* #__PURE__ */(0, _factoriesAny.createHasNumericValue)({
|
|
360
|
+
isNumeric,
|
|
358
361
|
typed
|
|
359
362
|
});
|
|
360
|
-
const
|
|
363
|
+
const isFinite = exports.isFinite = /* #__PURE__ */(0, _factoriesAny.createIsFinite)({
|
|
364
|
+
isBounded,
|
|
365
|
+
map,
|
|
361
366
|
typed
|
|
362
367
|
});
|
|
363
|
-
const
|
|
364
|
-
|
|
368
|
+
const isNegative = exports.isNegative = /* #__PURE__ */(0, _factoriesAny.createIsNegative)({
|
|
369
|
+
config: _configReadonly.config,
|
|
370
|
+
typed
|
|
371
|
+
});
|
|
372
|
+
const isZero = exports.isZero = /* #__PURE__ */(0, _factoriesAny.createIsZero)({
|
|
373
|
+
equalScalar,
|
|
365
374
|
typed
|
|
366
375
|
});
|
|
367
|
-
const apply = exports.apply = mapSlices;
|
|
368
376
|
const matrix = exports.matrix = /* #__PURE__ */(0, _factoriesAny.createMatrix)({
|
|
369
377
|
DenseMatrix,
|
|
370
378
|
Matrix,
|
|
@@ -395,10 +403,9 @@ const randomInt = exports.randomInt = /* #__PURE__ */(0, _factoriesAny.createRan
|
|
|
395
403
|
log2,
|
|
396
404
|
typed
|
|
397
405
|
});
|
|
398
|
-
const
|
|
399
|
-
|
|
400
|
-
matrix
|
|
401
|
-
typed
|
|
406
|
+
const resize = exports.resize = /* #__PURE__ */(0, _factoriesAny.createResize)({
|
|
407
|
+
config: _configReadonly.config,
|
|
408
|
+
matrix
|
|
402
409
|
});
|
|
403
410
|
const sech = exports.sech = /* #__PURE__ */(0, _factoriesAny.createSech)({
|
|
404
411
|
BigNumber,
|
|
@@ -453,11 +460,6 @@ const bin = exports.bin = /* #__PURE__ */(0, _factoriesAny.createBin)({
|
|
|
453
460
|
format,
|
|
454
461
|
typed
|
|
455
462
|
});
|
|
456
|
-
const concat = exports.concat = /* #__PURE__ */(0, _factoriesAny.createConcat)({
|
|
457
|
-
isInteger,
|
|
458
|
-
matrix,
|
|
459
|
-
typed
|
|
460
|
-
});
|
|
461
463
|
const coth = exports.coth = /* #__PURE__ */(0, _factoriesAny.createCoth)({
|
|
462
464
|
BigNumber,
|
|
463
465
|
typed
|
|
@@ -473,17 +475,9 @@ const diag = exports.diag = /* #__PURE__ */(0, _factoriesAny.createDiag)({
|
|
|
473
475
|
matrix,
|
|
474
476
|
typed
|
|
475
477
|
});
|
|
476
|
-
const dotMultiply = exports.dotMultiply = /* #__PURE__ */(0, _factoriesAny.createDotMultiply)({
|
|
477
|
-
concat,
|
|
478
|
-
equalScalar,
|
|
479
|
-
matrix,
|
|
480
|
-
multiplyScalar,
|
|
481
|
-
typed
|
|
482
|
-
});
|
|
483
478
|
const equal = exports.equal = /* #__PURE__ */(0, _factoriesAny.createEqual)({
|
|
484
479
|
DenseMatrix,
|
|
485
480
|
SparseMatrix,
|
|
486
|
-
concat,
|
|
487
481
|
equalScalar,
|
|
488
482
|
matrix,
|
|
489
483
|
typed
|
|
@@ -500,7 +494,8 @@ const identity = exports.identity = /* #__PURE__ */(0, _factoriesAny.createIdent
|
|
|
500
494
|
matrix,
|
|
501
495
|
typed
|
|
502
496
|
});
|
|
503
|
-
const
|
|
497
|
+
const isInteger = exports.isInteger = /* #__PURE__ */(0, _factoriesAny.createIsInteger)({
|
|
498
|
+
equal,
|
|
504
499
|
typed
|
|
505
500
|
});
|
|
506
501
|
const kron = exports.kron = /* #__PURE__ */(0, _factoriesAny.createKron)({
|
|
@@ -508,40 +503,17 @@ const kron = exports.kron = /* #__PURE__ */(0, _factoriesAny.createKron)({
|
|
|
508
503
|
multiplyScalar,
|
|
509
504
|
typed
|
|
510
505
|
});
|
|
511
|
-
const
|
|
512
|
-
|
|
513
|
-
SparseMatrix,
|
|
514
|
-
concat,
|
|
515
|
-
config: _configReadonly.config,
|
|
516
|
-
matrix,
|
|
506
|
+
const mapSlices = exports.mapSlices = /* #__PURE__ */(0, _factoriesAny.createMapSlices)({
|
|
507
|
+
isInteger,
|
|
517
508
|
typed
|
|
518
509
|
});
|
|
519
|
-
const
|
|
520
|
-
|
|
521
|
-
concat,
|
|
522
|
-
equalScalar,
|
|
523
|
-
matrix,
|
|
524
|
-
typed,
|
|
525
|
-
zeros
|
|
526
|
-
});
|
|
527
|
-
const matrixFromRows = exports.matrixFromRows = /* #__PURE__ */(0, _factoriesAny.createMatrixFromRows)({
|
|
510
|
+
const apply = exports.apply = mapSlices;
|
|
511
|
+
const matrixFromColumns = exports.matrixFromColumns = /* #__PURE__ */(0, _factoriesAny.createMatrixFromColumns)({
|
|
528
512
|
flatten,
|
|
529
513
|
matrix,
|
|
530
514
|
size,
|
|
531
515
|
typed
|
|
532
516
|
});
|
|
533
|
-
const mode = exports.mode = /* #__PURE__ */(0, _factoriesAny.createMode)({
|
|
534
|
-
isNaN,
|
|
535
|
-
isNumeric,
|
|
536
|
-
typed
|
|
537
|
-
});
|
|
538
|
-
const nthRoot = exports.nthRoot = /* #__PURE__ */(0, _factoriesAny.createNthRoot)({
|
|
539
|
-
BigNumber,
|
|
540
|
-
concat,
|
|
541
|
-
equalScalar,
|
|
542
|
-
matrix,
|
|
543
|
-
typed
|
|
544
|
-
});
|
|
545
517
|
const numeric = exports.numeric = /* #__PURE__ */(0, _factoriesAny.createNumeric)({
|
|
546
518
|
bignumber,
|
|
547
519
|
fraction,
|
|
@@ -553,17 +525,10 @@ const prod = exports.prod = /* #__PURE__ */(0, _factoriesAny.createProd)({
|
|
|
553
525
|
numeric,
|
|
554
526
|
typed
|
|
555
527
|
});
|
|
556
|
-
const
|
|
557
|
-
|
|
558
|
-
matrix
|
|
559
|
-
});
|
|
560
|
-
const rightArithShift = exports.rightArithShift = /* #__PURE__ */(0, _factoriesAny.createRightArithShift)({
|
|
561
|
-
DenseMatrix,
|
|
562
|
-
concat,
|
|
563
|
-
equalScalar,
|
|
528
|
+
const reshape = exports.reshape = /* #__PURE__ */(0, _factoriesAny.createReshape)({
|
|
529
|
+
isInteger,
|
|
564
530
|
matrix,
|
|
565
|
-
typed
|
|
566
|
-
zeros
|
|
531
|
+
typed
|
|
567
532
|
});
|
|
568
533
|
const round = exports.round = /* #__PURE__ */(0, _factoriesAny.createRound)({
|
|
569
534
|
BigNumber,
|
|
@@ -574,74 +539,15 @@ const round = exports.round = /* #__PURE__ */(0, _factoriesAny.createRound)({
|
|
|
574
539
|
typed,
|
|
575
540
|
zeros
|
|
576
541
|
});
|
|
577
|
-
const smaller = exports.smaller = /* #__PURE__ */(0, _factoriesAny.createSmaller)({
|
|
578
|
-
DenseMatrix,
|
|
579
|
-
SparseMatrix,
|
|
580
|
-
bignumber,
|
|
581
|
-
concat,
|
|
582
|
-
config: _configReadonly.config,
|
|
583
|
-
matrix,
|
|
584
|
-
typed
|
|
585
|
-
});
|
|
586
|
-
const to = exports.to = /* #__PURE__ */(0, _factoriesAny.createTo)({
|
|
587
|
-
concat,
|
|
588
|
-
matrix,
|
|
589
|
-
typed
|
|
590
|
-
});
|
|
591
542
|
const unaryMinus = exports.unaryMinus = /* #__PURE__ */(0, _factoriesAny.createUnaryMinus)({
|
|
592
543
|
typed
|
|
593
544
|
});
|
|
594
|
-
const
|
|
595
|
-
DenseMatrix,
|
|
596
|
-
SparseMatrix,
|
|
597
|
-
concat,
|
|
598
|
-
config: _configReadonly.config,
|
|
599
|
-
equalScalar,
|
|
600
|
-
matrix,
|
|
601
|
-
typed
|
|
602
|
-
});
|
|
603
|
-
const xor = exports.xor = /* #__PURE__ */(0, _factoriesAny.createXor)({
|
|
604
|
-
DenseMatrix,
|
|
605
|
-
SparseMatrix,
|
|
606
|
-
concat,
|
|
607
|
-
matrix,
|
|
608
|
-
typed
|
|
609
|
-
});
|
|
610
|
-
const add = exports.add = /* #__PURE__ */(0, _factoriesAny.createAdd)({
|
|
611
|
-
DenseMatrix,
|
|
612
|
-
SparseMatrix,
|
|
613
|
-
addScalar,
|
|
614
|
-
concat,
|
|
615
|
-
equalScalar,
|
|
616
|
-
matrix,
|
|
617
|
-
typed
|
|
618
|
-
});
|
|
619
|
-
const atan2 = exports.atan2 = /* #__PURE__ */(0, _factoriesAny.createAtan2)({
|
|
545
|
+
const bernoulli = exports.bernoulli = /* #__PURE__ */(0, _factoriesAny.createBernoulli)({
|
|
620
546
|
BigNumber,
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
typed
|
|
626
|
-
});
|
|
627
|
-
const bitAnd = exports.bitAnd = /* #__PURE__ */(0, _factoriesAny.createBitAnd)({
|
|
628
|
-
concat,
|
|
629
|
-
equalScalar,
|
|
630
|
-
matrix,
|
|
631
|
-
typed
|
|
632
|
-
});
|
|
633
|
-
const bitOr = exports.bitOr = /* #__PURE__ */(0, _factoriesAny.createBitOr)({
|
|
634
|
-
DenseMatrix,
|
|
635
|
-
concat,
|
|
636
|
-
equalScalar,
|
|
637
|
-
matrix,
|
|
638
|
-
typed
|
|
639
|
-
});
|
|
640
|
-
const bitXor = exports.bitXor = /* #__PURE__ */(0, _factoriesAny.createBitXor)({
|
|
641
|
-
DenseMatrix,
|
|
642
|
-
SparseMatrix,
|
|
643
|
-
concat,
|
|
644
|
-
matrix,
|
|
547
|
+
Fraction,
|
|
548
|
+
config: _configReadonly.config,
|
|
549
|
+
isInteger,
|
|
550
|
+
number,
|
|
645
551
|
typed
|
|
646
552
|
});
|
|
647
553
|
const cbrt = exports.cbrt = /* #__PURE__ */(0, _factoriesAny.createCbrt)({
|
|
@@ -654,18 +560,8 @@ const cbrt = exports.cbrt = /* #__PURE__ */(0, _factoriesAny.createCbrt)({
|
|
|
654
560
|
typed,
|
|
655
561
|
unaryMinus
|
|
656
562
|
});
|
|
657
|
-
const
|
|
658
|
-
|
|
659
|
-
DenseMatrix,
|
|
660
|
-
Fraction,
|
|
661
|
-
concat,
|
|
662
|
-
config: _configReadonly.config,
|
|
663
|
-
equalScalar,
|
|
664
|
-
matrix,
|
|
665
|
-
typed
|
|
666
|
-
});
|
|
667
|
-
const compareText = exports.compareText = /* #__PURE__ */(0, _factoriesAny.createCompareText)({
|
|
668
|
-
concat,
|
|
563
|
+
const concat = exports.concat = /* #__PURE__ */(0, _factoriesAny.createConcat)({
|
|
564
|
+
isInteger,
|
|
669
565
|
matrix,
|
|
670
566
|
typed
|
|
671
567
|
});
|
|
@@ -682,9 +578,11 @@ const divideScalar = exports.divideScalar = /* #__PURE__ */(0, _factoriesAny.cre
|
|
|
682
578
|
numeric,
|
|
683
579
|
typed
|
|
684
580
|
});
|
|
685
|
-
const
|
|
686
|
-
|
|
687
|
-
|
|
581
|
+
const dotMultiply = exports.dotMultiply = /* #__PURE__ */(0, _factoriesAny.createDotMultiply)({
|
|
582
|
+
concat,
|
|
583
|
+
equalScalar,
|
|
584
|
+
matrix,
|
|
585
|
+
multiplyScalar,
|
|
688
586
|
typed
|
|
689
587
|
});
|
|
690
588
|
const floor = exports.floor = /* #__PURE__ */(0, _factoriesAny.createFloor)({
|
|
@@ -707,28 +605,10 @@ const gcd = exports.gcd = /* #__PURE__ */(0, _factoriesAny.createGcd)({
|
|
|
707
605
|
typed,
|
|
708
606
|
zeros
|
|
709
607
|
});
|
|
710
|
-
const
|
|
711
|
-
|
|
712
|
-
typed
|
|
713
|
-
});
|
|
714
|
-
const hypot = exports.hypot = /* #__PURE__ */(0, _factoriesAny.createHypot)({
|
|
715
|
-
abs,
|
|
716
|
-
addScalar,
|
|
717
|
-
divideScalar,
|
|
718
|
-
isPositive,
|
|
719
|
-
multiplyScalar,
|
|
720
|
-
smaller,
|
|
721
|
-
sqrt,
|
|
608
|
+
const isPositive = exports.isPositive = /* #__PURE__ */(0, _factoriesAny.createIsPositive)({
|
|
609
|
+
config: _configReadonly.config,
|
|
722
610
|
typed
|
|
723
611
|
});
|
|
724
|
-
const ImmutableDenseMatrix = exports.ImmutableDenseMatrix = /* #__PURE__ */(0, _factoriesAny.createImmutableDenseMatrixClass)({
|
|
725
|
-
DenseMatrix,
|
|
726
|
-
smaller
|
|
727
|
-
});
|
|
728
|
-
const Index = exports.Index = /* #__PURE__ */(0, _factoriesAny.createIndexClass)({
|
|
729
|
-
ImmutableDenseMatrix,
|
|
730
|
-
getMatrixDataType
|
|
731
|
-
});
|
|
732
612
|
const larger = exports.larger = /* #__PURE__ */(0, _factoriesAny.createLarger)({
|
|
733
613
|
DenseMatrix,
|
|
734
614
|
SparseMatrix,
|
|
@@ -738,13 +618,20 @@ const larger = exports.larger = /* #__PURE__ */(0, _factoriesAny.createLarger)({
|
|
|
738
618
|
matrix,
|
|
739
619
|
typed
|
|
740
620
|
});
|
|
741
|
-
const
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
typeOf,
|
|
621
|
+
const lcm = exports.lcm = /* #__PURE__ */(0, _factoriesAny.createLcm)({
|
|
622
|
+
concat,
|
|
623
|
+
equalScalar,
|
|
624
|
+
matrix,
|
|
746
625
|
typed
|
|
747
626
|
});
|
|
627
|
+
const leftShift = exports.leftShift = /* #__PURE__ */(0, _factoriesAny.createLeftShift)({
|
|
628
|
+
DenseMatrix,
|
|
629
|
+
concat,
|
|
630
|
+
equalScalar,
|
|
631
|
+
matrix,
|
|
632
|
+
typed,
|
|
633
|
+
zeros
|
|
634
|
+
});
|
|
748
635
|
const lsolve = exports.lsolve = /* #__PURE__ */(0, _factoriesAny.createLsolve)({
|
|
749
636
|
DenseMatrix,
|
|
750
637
|
divideScalar,
|
|
@@ -754,17 +641,11 @@ const lsolve = exports.lsolve = /* #__PURE__ */(0, _factoriesAny.createLsolve)({
|
|
|
754
641
|
subtractScalar,
|
|
755
642
|
typed
|
|
756
643
|
});
|
|
757
|
-
const
|
|
758
|
-
flatten,
|
|
759
|
-
matrix,
|
|
760
|
-
size,
|
|
761
|
-
typed
|
|
762
|
-
});
|
|
763
|
-
const min = exports.min = /* #__PURE__ */(0, _factoriesAny.createMin)({
|
|
644
|
+
const max = exports.max = /* #__PURE__ */(0, _factoriesAny.createMax)({
|
|
764
645
|
config: _configReadonly.config,
|
|
765
646
|
isNaN,
|
|
647
|
+
larger,
|
|
766
648
|
numeric,
|
|
767
|
-
smaller,
|
|
768
649
|
typed
|
|
769
650
|
});
|
|
770
651
|
const mod = exports.mod = /* #__PURE__ */(0, _factoriesAny.createMod)({
|
|
@@ -777,10 +658,11 @@ const mod = exports.mod = /* #__PURE__ */(0, _factoriesAny.createMod)({
|
|
|
777
658
|
typed,
|
|
778
659
|
zeros
|
|
779
660
|
});
|
|
780
|
-
const
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
661
|
+
const nthRoot = exports.nthRoot = /* #__PURE__ */(0, _factoriesAny.createNthRoot)({
|
|
662
|
+
BigNumber,
|
|
663
|
+
concat,
|
|
664
|
+
equalScalar,
|
|
665
|
+
matrix,
|
|
784
666
|
typed
|
|
785
667
|
});
|
|
786
668
|
const nullish = exports.nullish = /* #__PURE__ */(0, _factoriesAny.createNullish)({
|
|
@@ -797,12 +679,6 @@ const or = exports.or = /* #__PURE__ */(0, _factoriesAny.createOr)({
|
|
|
797
679
|
matrix,
|
|
798
680
|
typed
|
|
799
681
|
});
|
|
800
|
-
const partitionSelect = exports.partitionSelect = /* #__PURE__ */(0, _factoriesAny.createPartitionSelect)({
|
|
801
|
-
compare,
|
|
802
|
-
isNaN,
|
|
803
|
-
isNumeric,
|
|
804
|
-
typed
|
|
805
|
-
});
|
|
806
682
|
const qr = exports.qr = /* #__PURE__ */(0, _factoriesAny.createQr)({
|
|
807
683
|
addScalar,
|
|
808
684
|
complex,
|
|
@@ -820,7 +696,7 @@ const qr = exports.qr = /* #__PURE__ */(0, _factoriesAny.createQr)({
|
|
|
820
696
|
unaryMinus,
|
|
821
697
|
zeros
|
|
822
698
|
});
|
|
823
|
-
const
|
|
699
|
+
const rightArithShift = exports.rightArithShift = /* #__PURE__ */(0, _factoriesAny.createRightArithShift)({
|
|
824
700
|
DenseMatrix,
|
|
825
701
|
concat,
|
|
826
702
|
equalScalar,
|
|
@@ -828,20 +704,15 @@ const rightLogShift = exports.rightLogShift = /* #__PURE__ */(0, _factoriesAny.c
|
|
|
828
704
|
typed,
|
|
829
705
|
zeros
|
|
830
706
|
});
|
|
831
|
-
const
|
|
707
|
+
const smaller = exports.smaller = /* #__PURE__ */(0, _factoriesAny.createSmaller)({
|
|
832
708
|
DenseMatrix,
|
|
833
709
|
SparseMatrix,
|
|
710
|
+
bignumber,
|
|
834
711
|
concat,
|
|
835
712
|
config: _configReadonly.config,
|
|
836
713
|
matrix,
|
|
837
714
|
typed
|
|
838
715
|
});
|
|
839
|
-
const subset = exports.subset = /* #__PURE__ */(0, _factoriesAny.createSubset)({
|
|
840
|
-
add,
|
|
841
|
-
matrix,
|
|
842
|
-
typed,
|
|
843
|
-
zeros
|
|
844
|
-
});
|
|
845
716
|
const subtract = exports.subtract = /* #__PURE__ */(0, _factoriesAny.createSubtract)({
|
|
846
717
|
DenseMatrix,
|
|
847
718
|
concat,
|
|
@@ -851,11 +722,16 @@ const subtract = exports.subtract = /* #__PURE__ */(0, _factoriesAny.createSubtr
|
|
|
851
722
|
typed,
|
|
852
723
|
unaryMinus
|
|
853
724
|
});
|
|
854
|
-
const
|
|
855
|
-
|
|
725
|
+
const to = exports.to = /* #__PURE__ */(0, _factoriesAny.createTo)({
|
|
726
|
+
concat,
|
|
856
727
|
matrix,
|
|
857
728
|
typed
|
|
858
729
|
});
|
|
730
|
+
const unaryPlus = exports.unaryPlus = /* #__PURE__ */(0, _factoriesAny.createUnaryPlus)({
|
|
731
|
+
config: _configReadonly.config,
|
|
732
|
+
numeric,
|
|
733
|
+
typed
|
|
734
|
+
});
|
|
859
735
|
const usolve = exports.usolve = /* #__PURE__ */(0, _factoriesAny.createUsolve)({
|
|
860
736
|
DenseMatrix,
|
|
861
737
|
divideScalar,
|
|
@@ -865,11 +741,48 @@ const usolve = exports.usolve = /* #__PURE__ */(0, _factoriesAny.createUsolve)({
|
|
|
865
741
|
subtractScalar,
|
|
866
742
|
typed
|
|
867
743
|
});
|
|
868
|
-
const
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
744
|
+
const xor = exports.xor = /* #__PURE__ */(0, _factoriesAny.createXor)({
|
|
745
|
+
DenseMatrix,
|
|
746
|
+
SparseMatrix,
|
|
747
|
+
concat,
|
|
748
|
+
matrix,
|
|
749
|
+
typed
|
|
750
|
+
});
|
|
751
|
+
const add = exports.add = /* #__PURE__ */(0, _factoriesAny.createAdd)({
|
|
752
|
+
DenseMatrix,
|
|
753
|
+
SparseMatrix,
|
|
754
|
+
addScalar,
|
|
755
|
+
concat,
|
|
756
|
+
equalScalar,
|
|
757
|
+
matrix,
|
|
758
|
+
typed
|
|
759
|
+
});
|
|
760
|
+
const atan2 = exports.atan2 = /* #__PURE__ */(0, _factoriesAny.createAtan2)({
|
|
761
|
+
BigNumber,
|
|
762
|
+
DenseMatrix,
|
|
763
|
+
concat,
|
|
764
|
+
equalScalar,
|
|
765
|
+
matrix,
|
|
766
|
+
typed
|
|
767
|
+
});
|
|
768
|
+
const bitAnd = exports.bitAnd = /* #__PURE__ */(0, _factoriesAny.createBitAnd)({
|
|
769
|
+
concat,
|
|
770
|
+
equalScalar,
|
|
771
|
+
matrix,
|
|
772
|
+
typed
|
|
773
|
+
});
|
|
774
|
+
const bitOr = exports.bitOr = /* #__PURE__ */(0, _factoriesAny.createBitOr)({
|
|
775
|
+
DenseMatrix,
|
|
776
|
+
concat,
|
|
777
|
+
equalScalar,
|
|
778
|
+
matrix,
|
|
779
|
+
typed
|
|
780
|
+
});
|
|
781
|
+
const bitXor = exports.bitXor = /* #__PURE__ */(0, _factoriesAny.createBitXor)({
|
|
782
|
+
DenseMatrix,
|
|
783
|
+
SparseMatrix,
|
|
784
|
+
concat,
|
|
785
|
+
matrix,
|
|
873
786
|
typed
|
|
874
787
|
});
|
|
875
788
|
const catalan = exports.catalan = /* #__PURE__ */(0, _factoriesAny.createCatalan)({
|
|
@@ -881,8 +794,19 @@ const catalan = exports.catalan = /* #__PURE__ */(0, _factoriesAny.createCatalan
|
|
|
881
794
|
multiplyScalar,
|
|
882
795
|
typed
|
|
883
796
|
});
|
|
884
|
-
const
|
|
885
|
-
|
|
797
|
+
const compare = exports.compare = /* #__PURE__ */(0, _factoriesAny.createCompare)({
|
|
798
|
+
BigNumber,
|
|
799
|
+
DenseMatrix,
|
|
800
|
+
Fraction,
|
|
801
|
+
concat,
|
|
802
|
+
config: _configReadonly.config,
|
|
803
|
+
equalScalar,
|
|
804
|
+
matrix,
|
|
805
|
+
typed
|
|
806
|
+
});
|
|
807
|
+
const compareText = exports.compareText = /* #__PURE__ */(0, _factoriesAny.createCompareText)({
|
|
808
|
+
concat,
|
|
809
|
+
matrix,
|
|
886
810
|
typed
|
|
887
811
|
});
|
|
888
812
|
const composition = exports.composition = /* #__PURE__ */(0, _factoriesAny.createComposition)({
|
|
@@ -934,14 +858,33 @@ const dotDivide = exports.dotDivide = /* #__PURE__ */(0, _factoriesAny.createDot
|
|
|
934
858
|
matrix,
|
|
935
859
|
typed
|
|
936
860
|
});
|
|
861
|
+
const equalText = exports.equalText = /* #__PURE__ */(0, _factoriesAny.createEqualText)({
|
|
862
|
+
compareText,
|
|
863
|
+
isZero,
|
|
864
|
+
typed
|
|
865
|
+
});
|
|
937
866
|
const FibonacciHeap = exports.FibonacciHeap = /* #__PURE__ */(0, _factoriesAny.createFibonacciHeapClass)({
|
|
938
867
|
larger,
|
|
939
868
|
smaller
|
|
940
869
|
});
|
|
941
|
-
const
|
|
942
|
-
|
|
870
|
+
const hypot = exports.hypot = /* #__PURE__ */(0, _factoriesAny.createHypot)({
|
|
871
|
+
abs,
|
|
872
|
+
addScalar,
|
|
873
|
+
divideScalar,
|
|
874
|
+
isPositive,
|
|
875
|
+
multiplyScalar,
|
|
876
|
+
smaller,
|
|
877
|
+
sqrt,
|
|
943
878
|
typed
|
|
944
879
|
});
|
|
880
|
+
const ImmutableDenseMatrix = exports.ImmutableDenseMatrix = /* #__PURE__ */(0, _factoriesAny.createImmutableDenseMatrixClass)({
|
|
881
|
+
DenseMatrix,
|
|
882
|
+
smaller
|
|
883
|
+
});
|
|
884
|
+
const Index = exports.Index = /* #__PURE__ */(0, _factoriesAny.createIndexClass)({
|
|
885
|
+
ImmutableDenseMatrix,
|
|
886
|
+
getMatrixDataType
|
|
887
|
+
});
|
|
945
888
|
const intersect = exports.intersect = /* #__PURE__ */(0, _factoriesAny.createIntersect)({
|
|
946
889
|
abs,
|
|
947
890
|
add,
|
|
@@ -970,17 +913,19 @@ const invmod = exports.invmod = /* #__PURE__ */(0, _factoriesAny.createInvmod)({
|
|
|
970
913
|
typed,
|
|
971
914
|
xgcd
|
|
972
915
|
});
|
|
973
|
-
const
|
|
916
|
+
const largerEq = exports.largerEq = /* #__PURE__ */(0, _factoriesAny.createLargerEq)({
|
|
917
|
+
DenseMatrix,
|
|
918
|
+
SparseMatrix,
|
|
974
919
|
concat,
|
|
975
|
-
|
|
920
|
+
config: _configReadonly.config,
|
|
976
921
|
matrix,
|
|
977
922
|
typed
|
|
978
923
|
});
|
|
979
|
-
const
|
|
924
|
+
const log = exports.log = /* #__PURE__ */(0, _factoriesAny.createLog)({
|
|
980
925
|
Complex,
|
|
981
926
|
config: _configReadonly.config,
|
|
982
927
|
divideScalar,
|
|
983
|
-
|
|
928
|
+
typeOf,
|
|
984
929
|
typed
|
|
985
930
|
});
|
|
986
931
|
const lsolveAll = exports.lsolveAll = /* #__PURE__ */(0, _factoriesAny.createLsolveAll)({
|
|
@@ -992,62 +937,38 @@ const lsolveAll = exports.lsolveAll = /* #__PURE__ */(0, _factoriesAny.createLso
|
|
|
992
937
|
subtractScalar,
|
|
993
938
|
typed
|
|
994
939
|
});
|
|
995
|
-
const
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
numeric,
|
|
940
|
+
const matrixFromRows = exports.matrixFromRows = /* #__PURE__ */(0, _factoriesAny.createMatrixFromRows)({
|
|
941
|
+
flatten,
|
|
942
|
+
matrix,
|
|
943
|
+
size,
|
|
1000
944
|
typed
|
|
1001
945
|
});
|
|
1002
|
-
const
|
|
1003
|
-
bignumber,
|
|
1004
|
-
matrix,
|
|
1005
|
-
add,
|
|
946
|
+
const min = exports.min = /* #__PURE__ */(0, _factoriesAny.createMin)({
|
|
1006
947
|
config: _configReadonly.config,
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
isZero,
|
|
1010
|
-
larger,
|
|
1011
|
-
largerEq,
|
|
948
|
+
isNaN,
|
|
949
|
+
numeric,
|
|
1012
950
|
smaller,
|
|
1013
|
-
smallerEq,
|
|
1014
951
|
typed
|
|
1015
952
|
});
|
|
1016
|
-
const
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
953
|
+
const nthRoots = exports.nthRoots = /* #__PURE__ */(0, _factoriesAny.createNthRoots)({
|
|
954
|
+
Complex,
|
|
955
|
+
config: _configReadonly.config,
|
|
956
|
+
divideScalar,
|
|
1020
957
|
typed
|
|
1021
958
|
});
|
|
1022
|
-
const
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
size,
|
|
1027
|
-
subset,
|
|
959
|
+
const partitionSelect = exports.partitionSelect = /* #__PURE__ */(0, _factoriesAny.createPartitionSelect)({
|
|
960
|
+
compare,
|
|
961
|
+
isNaN,
|
|
962
|
+
isNumeric,
|
|
1028
963
|
typed
|
|
1029
964
|
});
|
|
1030
|
-
const
|
|
965
|
+
const rightLogShift = exports.rightLogShift = /* #__PURE__ */(0, _factoriesAny.createRightLogShift)({
|
|
1031
966
|
DenseMatrix,
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
});
|
|
1038
|
-
const setIsSubset = exports.setIsSubset = /* #__PURE__ */(0, _factoriesAny.createSetIsSubset)({
|
|
1039
|
-
Index,
|
|
1040
|
-
compareNatural,
|
|
1041
|
-
size,
|
|
1042
|
-
subset,
|
|
1043
|
-
typed
|
|
1044
|
-
});
|
|
1045
|
-
const setPowerset = exports.setPowerset = /* #__PURE__ */(0, _factoriesAny.createSetPowerset)({
|
|
1046
|
-
Index,
|
|
1047
|
-
compareNatural,
|
|
1048
|
-
size,
|
|
1049
|
-
subset,
|
|
1050
|
-
typed
|
|
967
|
+
concat,
|
|
968
|
+
equalScalar,
|
|
969
|
+
matrix,
|
|
970
|
+
typed,
|
|
971
|
+
zeros
|
|
1051
972
|
});
|
|
1052
973
|
const slu = exports.slu = /* #__PURE__ */(0, _factoriesAny.createSlu)({
|
|
1053
974
|
SparseMatrix,
|
|
@@ -1061,17 +982,28 @@ const slu = exports.slu = /* #__PURE__ */(0, _factoriesAny.createSlu)({
|
|
|
1061
982
|
transpose,
|
|
1062
983
|
typed
|
|
1063
984
|
});
|
|
1064
|
-
const
|
|
1065
|
-
|
|
1066
|
-
|
|
985
|
+
const Spa = exports.Spa = /* #__PURE__ */(0, _factoriesAny.createSpaClass)({
|
|
986
|
+
FibonacciHeap,
|
|
987
|
+
addScalar,
|
|
988
|
+
equalScalar
|
|
989
|
+
});
|
|
990
|
+
const subset = exports.subset = /* #__PURE__ */(0, _factoriesAny.createSubset)({
|
|
991
|
+
add,
|
|
1067
992
|
matrix,
|
|
1068
|
-
typed
|
|
993
|
+
typed,
|
|
994
|
+
zeros
|
|
1069
995
|
});
|
|
1070
|
-
const
|
|
996
|
+
const sum = exports.sum = /* #__PURE__ */(0, _factoriesAny.createSum)({
|
|
997
|
+
add,
|
|
1071
998
|
config: _configReadonly.config,
|
|
1072
999
|
numeric,
|
|
1073
1000
|
typed
|
|
1074
1001
|
});
|
|
1002
|
+
const trace = exports.trace = /* #__PURE__ */(0, _factoriesAny.createTrace)({
|
|
1003
|
+
add,
|
|
1004
|
+
matrix,
|
|
1005
|
+
typed
|
|
1006
|
+
});
|
|
1075
1007
|
const usolveAll = exports.usolveAll = /* #__PURE__ */(0, _factoriesAny.createUsolveAll)({
|
|
1076
1008
|
DenseMatrix,
|
|
1077
1009
|
divideScalar,
|
|
@@ -1081,13 +1013,12 @@ const usolveAll = exports.usolveAll = /* #__PURE__ */(0, _factoriesAny.createUso
|
|
|
1081
1013
|
subtractScalar,
|
|
1082
1014
|
typed
|
|
1083
1015
|
});
|
|
1084
|
-
const
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
typed
|
|
1090
|
-
zeros
|
|
1016
|
+
const zpk2tf = exports.zpk2tf = /* #__PURE__ */(0, _factoriesAny.createZpk2tf)({
|
|
1017
|
+
Complex,
|
|
1018
|
+
add,
|
|
1019
|
+
multiply,
|
|
1020
|
+
number,
|
|
1021
|
+
typed
|
|
1091
1022
|
});
|
|
1092
1023
|
const ceil = exports.ceil = /* #__PURE__ */(0, _factoriesAny.createCeil)({
|
|
1093
1024
|
DenseMatrix,
|
|
@@ -1098,10 +1029,8 @@ const ceil = exports.ceil = /* #__PURE__ */(0, _factoriesAny.createCeil)({
|
|
|
1098
1029
|
typed,
|
|
1099
1030
|
zeros
|
|
1100
1031
|
});
|
|
1101
|
-
const
|
|
1102
|
-
|
|
1103
|
-
matrix,
|
|
1104
|
-
range,
|
|
1032
|
+
const compareNatural = exports.compareNatural = /* #__PURE__ */(0, _factoriesAny.createCompareNatural)({
|
|
1033
|
+
compare,
|
|
1105
1034
|
typed
|
|
1106
1035
|
});
|
|
1107
1036
|
const cumsum = exports.cumsum = /* #__PURE__ */(0, _factoriesAny.createCumSum)({
|
|
@@ -1119,38 +1048,8 @@ const fix = exports.fix = /* #__PURE__ */(0, _factoriesAny.createFix)({
|
|
|
1119
1048
|
typed,
|
|
1120
1049
|
zeros
|
|
1121
1050
|
});
|
|
1122
|
-
const
|
|
1123
|
-
DenseMatrix,
|
|
1124
|
-
Index,
|
|
1125
|
-
compareNatural,
|
|
1126
|
-
size,
|
|
1127
|
-
subset,
|
|
1128
|
-
typed
|
|
1129
|
-
});
|
|
1130
|
-
const setMultiplicity = exports.setMultiplicity = /* #__PURE__ */(0, _factoriesAny.createSetMultiplicity)({
|
|
1131
|
-
Index,
|
|
1132
|
-
compareNatural,
|
|
1133
|
-
size,
|
|
1134
|
-
subset,
|
|
1135
|
-
typed
|
|
1136
|
-
});
|
|
1137
|
-
const setSymDifference = exports.setSymDifference = /* #__PURE__ */(0, _factoriesAny.createSetSymDifference)({
|
|
1051
|
+
const index = exports.index = /* #__PURE__ */(0, _factoriesAny.createIndex)({
|
|
1138
1052
|
Index,
|
|
1139
|
-
concat,
|
|
1140
|
-
setDifference,
|
|
1141
|
-
size,
|
|
1142
|
-
subset,
|
|
1143
|
-
typed
|
|
1144
|
-
});
|
|
1145
|
-
const Spa = exports.Spa = /* #__PURE__ */(0, _factoriesAny.createSpaClass)({
|
|
1146
|
-
FibonacciHeap,
|
|
1147
|
-
addScalar,
|
|
1148
|
-
equalScalar
|
|
1149
|
-
});
|
|
1150
|
-
const sum = exports.sum = /* #__PURE__ */(0, _factoriesAny.createSum)({
|
|
1151
|
-
add,
|
|
1152
|
-
config: _configReadonly.config,
|
|
1153
|
-
numeric,
|
|
1154
1053
|
typed
|
|
1155
1054
|
});
|
|
1156
1055
|
const inv = exports.inv = /* #__PURE__ */(0, _factoriesAny.createInv)({
|
|
@@ -1164,6 +1063,13 @@ const inv = exports.inv = /* #__PURE__ */(0, _factoriesAny.createInv)({
|
|
|
1164
1063
|
typed,
|
|
1165
1064
|
unaryMinus
|
|
1166
1065
|
});
|
|
1066
|
+
const log1p = exports.log1p = /* #__PURE__ */(0, _factoriesAny.createLog1p)({
|
|
1067
|
+
Complex,
|
|
1068
|
+
config: _configReadonly.config,
|
|
1069
|
+
divideScalar,
|
|
1070
|
+
log,
|
|
1071
|
+
typed
|
|
1072
|
+
});
|
|
1167
1073
|
const lup = exports.lup = /* #__PURE__ */(0, _factoriesAny.createLup)({
|
|
1168
1074
|
DenseMatrix,
|
|
1169
1075
|
Spa,
|
|
@@ -1204,7 +1110,7 @@ const pow = exports.pow = /* #__PURE__ */(0, _factoriesAny.createPow)({
|
|
|
1204
1110
|
number,
|
|
1205
1111
|
typed
|
|
1206
1112
|
});
|
|
1207
|
-
const
|
|
1113
|
+
const setCartesian = exports.setCartesian = /* #__PURE__ */(0, _factoriesAny.createSetCartesian)({
|
|
1208
1114
|
DenseMatrix,
|
|
1209
1115
|
Index,
|
|
1210
1116
|
compareNatural,
|
|
@@ -1212,15 +1118,42 @@ const setIntersect = exports.setIntersect = /* #__PURE__ */(0, _factoriesAny.cre
|
|
|
1212
1118
|
subset,
|
|
1213
1119
|
typed
|
|
1214
1120
|
});
|
|
1215
|
-
const
|
|
1121
|
+
const setDistinct = exports.setDistinct = /* #__PURE__ */(0, _factoriesAny.createSetDistinct)({
|
|
1122
|
+
DenseMatrix,
|
|
1216
1123
|
Index,
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1124
|
+
compareNatural,
|
|
1125
|
+
size,
|
|
1126
|
+
subset,
|
|
1127
|
+
typed
|
|
1128
|
+
});
|
|
1129
|
+
const setIsSubset = exports.setIsSubset = /* #__PURE__ */(0, _factoriesAny.createSetIsSubset)({
|
|
1130
|
+
Index,
|
|
1131
|
+
compareNatural,
|
|
1132
|
+
size,
|
|
1133
|
+
subset,
|
|
1134
|
+
typed
|
|
1135
|
+
});
|
|
1136
|
+
const setPowerset = exports.setPowerset = /* #__PURE__ */(0, _factoriesAny.createSetPowerset)({
|
|
1137
|
+
Index,
|
|
1138
|
+
compareNatural,
|
|
1220
1139
|
size,
|
|
1221
1140
|
subset,
|
|
1222
1141
|
typed
|
|
1223
1142
|
});
|
|
1143
|
+
const smallerEq = exports.smallerEq = /* #__PURE__ */(0, _factoriesAny.createSmallerEq)({
|
|
1144
|
+
DenseMatrix,
|
|
1145
|
+
SparseMatrix,
|
|
1146
|
+
concat,
|
|
1147
|
+
config: _configReadonly.config,
|
|
1148
|
+
matrix,
|
|
1149
|
+
typed
|
|
1150
|
+
});
|
|
1151
|
+
const sort = exports.sort = /* #__PURE__ */(0, _factoriesAny.createSort)({
|
|
1152
|
+
compare,
|
|
1153
|
+
compareNatural,
|
|
1154
|
+
matrix,
|
|
1155
|
+
typed
|
|
1156
|
+
});
|
|
1224
1157
|
const sqrtm = exports.sqrtm = /* #__PURE__ */(0, _factoriesAny.createSqrtm)({
|
|
1225
1158
|
abs,
|
|
1226
1159
|
add,
|
|
@@ -1234,87 +1167,30 @@ const sqrtm = exports.sqrtm = /* #__PURE__ */(0, _factoriesAny.createSqrtm)({
|
|
|
1234
1167
|
subtract,
|
|
1235
1168
|
typed
|
|
1236
1169
|
});
|
|
1237
|
-
const
|
|
1238
|
-
BigNumber,
|
|
1239
|
-
Complex,
|
|
1240
|
-
Fraction,
|
|
1241
|
-
abs,
|
|
1242
|
-
addScalar,
|
|
1243
|
-
config: _configReadonly.config,
|
|
1244
|
-
divideScalar,
|
|
1245
|
-
equal,
|
|
1246
|
-
fix,
|
|
1247
|
-
format,
|
|
1248
|
-
isNumeric,
|
|
1249
|
-
multiplyScalar,
|
|
1250
|
-
number,
|
|
1251
|
-
pow,
|
|
1252
|
-
round,
|
|
1253
|
-
subtractScalar,
|
|
1254
|
-
toBest
|
|
1255
|
-
});
|
|
1256
|
-
const vacuumImpedance = exports.vacuumImpedance = /* #__PURE__ */(0, _factoriesAny.createVacuumImpedance)({
|
|
1257
|
-
BigNumber,
|
|
1258
|
-
Unit,
|
|
1259
|
-
config: _configReadonly.config
|
|
1260
|
-
});
|
|
1261
|
-
const wienDisplacement = exports.wienDisplacement = /* #__PURE__ */(0, _factoriesAny.createWienDisplacement)({
|
|
1262
|
-
BigNumber,
|
|
1263
|
-
Unit,
|
|
1264
|
-
config: _configReadonly.config
|
|
1265
|
-
});
|
|
1266
|
-
const atomicMass = exports.atomicMass = /* #__PURE__ */(0, _factoriesAny.createAtomicMass)({
|
|
1267
|
-
BigNumber,
|
|
1268
|
-
Unit,
|
|
1269
|
-
config: _configReadonly.config
|
|
1270
|
-
});
|
|
1271
|
-
const bohrMagneton = exports.bohrMagneton = /* #__PURE__ */(0, _factoriesAny.createBohrMagneton)({
|
|
1272
|
-
BigNumber,
|
|
1273
|
-
Unit,
|
|
1274
|
-
config: _configReadonly.config
|
|
1275
|
-
});
|
|
1276
|
-
const boltzmann = exports.boltzmann = /* #__PURE__ */(0, _factoriesAny.createBoltzmann)({
|
|
1277
|
-
BigNumber,
|
|
1278
|
-
Unit,
|
|
1279
|
-
config: _configReadonly.config
|
|
1280
|
-
});
|
|
1281
|
-
const conductanceQuantum = exports.conductanceQuantum = /* #__PURE__ */(0, _factoriesAny.createConductanceQuantum)({
|
|
1282
|
-
BigNumber,
|
|
1283
|
-
Unit,
|
|
1284
|
-
config: _configReadonly.config
|
|
1285
|
-
});
|
|
1286
|
-
const coulomb = exports.coulomb = /* #__PURE__ */(0, _factoriesAny.createCoulomb)({
|
|
1287
|
-
BigNumber,
|
|
1288
|
-
Unit,
|
|
1289
|
-
config: _configReadonly.config
|
|
1290
|
-
});
|
|
1291
|
-
const createUnit = exports.createUnit = /* #__PURE__ */(0, _factoriesAny.createCreateUnit)({
|
|
1292
|
-
Unit,
|
|
1293
|
-
typed
|
|
1294
|
-
});
|
|
1295
|
-
const deuteronMass = exports.deuteronMass = /* #__PURE__ */(0, _factoriesAny.createDeuteronMass)({
|
|
1296
|
-
BigNumber,
|
|
1297
|
-
Unit,
|
|
1298
|
-
config: _configReadonly.config
|
|
1299
|
-
});
|
|
1300
|
-
const dotPow = exports.dotPow = /* #__PURE__ */(0, _factoriesAny.createDotPow)({
|
|
1170
|
+
const unequal = exports.unequal = /* #__PURE__ */(0, _factoriesAny.createUnequal)({
|
|
1301
1171
|
DenseMatrix,
|
|
1302
1172
|
SparseMatrix,
|
|
1303
1173
|
concat,
|
|
1174
|
+
config: _configReadonly.config,
|
|
1304
1175
|
equalScalar,
|
|
1305
1176
|
matrix,
|
|
1306
|
-
pow,
|
|
1307
1177
|
typed
|
|
1308
1178
|
});
|
|
1309
|
-
const
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1179
|
+
const and = exports.and = /* #__PURE__ */(0, _factoriesAny.createAnd)({
|
|
1180
|
+
concat,
|
|
1181
|
+
equalScalar,
|
|
1182
|
+
matrix,
|
|
1183
|
+
not,
|
|
1184
|
+
typed,
|
|
1185
|
+
zeros
|
|
1313
1186
|
});
|
|
1314
|
-
const
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1187
|
+
const divide = exports.divide = /* #__PURE__ */(0, _factoriesAny.createDivide)({
|
|
1188
|
+
divideScalar,
|
|
1189
|
+
equalScalar,
|
|
1190
|
+
inv,
|
|
1191
|
+
matrix,
|
|
1192
|
+
multiply,
|
|
1193
|
+
typed
|
|
1318
1194
|
});
|
|
1319
1195
|
const expm = exports.expm = /* #__PURE__ */(0, _factoriesAny.createExpm)({
|
|
1320
1196
|
abs,
|
|
@@ -1324,11 +1200,6 @@ const expm = exports.expm = /* #__PURE__ */(0, _factoriesAny.createExpm)({
|
|
|
1324
1200
|
multiply,
|
|
1325
1201
|
typed
|
|
1326
1202
|
});
|
|
1327
|
-
const faraday = exports.faraday = /* #__PURE__ */(0, _factoriesAny.createFaraday)({
|
|
1328
|
-
BigNumber,
|
|
1329
|
-
Unit,
|
|
1330
|
-
config: _configReadonly.config
|
|
1331
|
-
});
|
|
1332
1203
|
const fft = exports.fft = /* #__PURE__ */(0, _factoriesAny.createFft)({
|
|
1333
1204
|
addScalar,
|
|
1334
1205
|
ceil,
|
|
@@ -1344,6 +1215,14 @@ const fft = exports.fft = /* #__PURE__ */(0, _factoriesAny.createFft)({
|
|
|
1344
1215
|
tau,
|
|
1345
1216
|
typed
|
|
1346
1217
|
});
|
|
1218
|
+
const freqz = exports.freqz = /* #__PURE__ */(0, _factoriesAny.createFreqz)({
|
|
1219
|
+
Complex,
|
|
1220
|
+
add,
|
|
1221
|
+
divide,
|
|
1222
|
+
matrix,
|
|
1223
|
+
multiply,
|
|
1224
|
+
typed
|
|
1225
|
+
});
|
|
1347
1226
|
const gamma = exports.gamma = /* #__PURE__ */(0, _factoriesAny.createGamma)({
|
|
1348
1227
|
BigNumber,
|
|
1349
1228
|
Complex,
|
|
@@ -1352,174 +1231,284 @@ const gamma = exports.gamma = /* #__PURE__ */(0, _factoriesAny.createGamma)({
|
|
|
1352
1231
|
pow,
|
|
1353
1232
|
typed
|
|
1354
1233
|
});
|
|
1355
|
-
const gravitationConstant = exports.gravitationConstant = /* #__PURE__ */(0, _factoriesAny.createGravitationConstant)({
|
|
1356
|
-
BigNumber,
|
|
1357
|
-
Unit,
|
|
1358
|
-
config: _configReadonly.config
|
|
1359
|
-
});
|
|
1360
|
-
const hartreeEnergy = exports.hartreeEnergy = /* #__PURE__ */(0, _factoriesAny.createHartreeEnergy)({
|
|
1361
|
-
BigNumber,
|
|
1362
|
-
Unit,
|
|
1363
|
-
config: _configReadonly.config
|
|
1364
|
-
});
|
|
1365
1234
|
const ifft = exports.ifft = /* #__PURE__ */(0, _factoriesAny.createIfft)({
|
|
1366
1235
|
conj,
|
|
1367
1236
|
dotDivide,
|
|
1368
1237
|
fft,
|
|
1369
1238
|
typed
|
|
1370
1239
|
});
|
|
1371
|
-
const
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1240
|
+
const kldivergence = exports.kldivergence = /* #__PURE__ */(0, _factoriesAny.createKldivergence)({
|
|
1241
|
+
divide,
|
|
1242
|
+
dotDivide,
|
|
1243
|
+
isNumeric,
|
|
1244
|
+
log,
|
|
1245
|
+
map,
|
|
1246
|
+
matrix,
|
|
1247
|
+
multiply,
|
|
1248
|
+
sum,
|
|
1249
|
+
typed
|
|
1375
1250
|
});
|
|
1376
|
-
const
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1251
|
+
const lusolve = exports.lusolve = /* #__PURE__ */(0, _factoriesAny.createLusolve)({
|
|
1252
|
+
DenseMatrix,
|
|
1253
|
+
lsolve,
|
|
1254
|
+
lup,
|
|
1255
|
+
matrix,
|
|
1256
|
+
slu,
|
|
1257
|
+
typed,
|
|
1258
|
+
usolve
|
|
1380
1259
|
});
|
|
1381
|
-
const
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1260
|
+
const mean = exports.mean = /* #__PURE__ */(0, _factoriesAny.createMean)({
|
|
1261
|
+
add,
|
|
1262
|
+
divide,
|
|
1263
|
+
typed
|
|
1385
1264
|
});
|
|
1386
|
-
const
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1265
|
+
const median = exports.median = /* #__PURE__ */(0, _factoriesAny.createMedian)({
|
|
1266
|
+
add,
|
|
1267
|
+
compare,
|
|
1268
|
+
divide,
|
|
1269
|
+
partitionSelect,
|
|
1270
|
+
typed
|
|
1390
1271
|
});
|
|
1391
|
-
const
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1272
|
+
const polynomialRoot = exports.polynomialRoot = /* #__PURE__ */(0, _factoriesAny.createPolynomialRoot)({
|
|
1273
|
+
add,
|
|
1274
|
+
cbrt,
|
|
1275
|
+
divide,
|
|
1276
|
+
equalScalar,
|
|
1277
|
+
im,
|
|
1278
|
+
isZero,
|
|
1279
|
+
multiply,
|
|
1280
|
+
re,
|
|
1281
|
+
sqrt,
|
|
1282
|
+
subtract,
|
|
1283
|
+
typeOf,
|
|
1284
|
+
typed,
|
|
1285
|
+
unaryMinus
|
|
1286
|
+
});
|
|
1287
|
+
const quantileSeq = exports.quantileSeq = /* #__PURE__ */(0, _factoriesAny.createQuantileSeq)({
|
|
1288
|
+
bignumber,
|
|
1289
|
+
add,
|
|
1290
|
+
compare,
|
|
1291
|
+
divide,
|
|
1292
|
+
isInteger,
|
|
1293
|
+
larger,
|
|
1294
|
+
mapSlices,
|
|
1295
|
+
multiply,
|
|
1296
|
+
partitionSelect,
|
|
1297
|
+
smaller,
|
|
1298
|
+
smallerEq,
|
|
1299
|
+
subtract,
|
|
1300
|
+
typed
|
|
1301
|
+
});
|
|
1302
|
+
const range = exports.range = /* #__PURE__ */(0, _factoriesAny.createRange)({
|
|
1303
|
+
bignumber,
|
|
1304
|
+
matrix,
|
|
1305
|
+
add,
|
|
1306
|
+
config: _configReadonly.config,
|
|
1307
|
+
equal,
|
|
1308
|
+
isPositive,
|
|
1309
|
+
isZero,
|
|
1310
|
+
larger,
|
|
1311
|
+
largerEq,
|
|
1312
|
+
smaller,
|
|
1313
|
+
smallerEq,
|
|
1314
|
+
typed
|
|
1315
|
+
});
|
|
1316
|
+
const row = exports.row = /* #__PURE__ */(0, _factoriesAny.createRow)({
|
|
1317
|
+
Index,
|
|
1318
|
+
matrix,
|
|
1319
|
+
range,
|
|
1320
|
+
typed
|
|
1321
|
+
});
|
|
1322
|
+
const setDifference = exports.setDifference = /* #__PURE__ */(0, _factoriesAny.createSetDifference)({
|
|
1323
|
+
DenseMatrix,
|
|
1324
|
+
Index,
|
|
1325
|
+
compareNatural,
|
|
1326
|
+
size,
|
|
1327
|
+
subset,
|
|
1328
|
+
typed
|
|
1329
|
+
});
|
|
1330
|
+
const setMultiplicity = exports.setMultiplicity = /* #__PURE__ */(0, _factoriesAny.createSetMultiplicity)({
|
|
1331
|
+
Index,
|
|
1332
|
+
compareNatural,
|
|
1333
|
+
size,
|
|
1334
|
+
subset,
|
|
1335
|
+
typed
|
|
1336
|
+
});
|
|
1337
|
+
const setSymDifference = exports.setSymDifference = /* #__PURE__ */(0, _factoriesAny.createSetSymDifference)({
|
|
1338
|
+
Index,
|
|
1339
|
+
concat,
|
|
1340
|
+
setDifference,
|
|
1341
|
+
size,
|
|
1342
|
+
subset,
|
|
1343
|
+
typed
|
|
1344
|
+
});
|
|
1345
|
+
const solveODE = exports.solveODE = /* #__PURE__ */(0, _factoriesAny.createSolveODE)({
|
|
1346
|
+
abs,
|
|
1347
|
+
add,
|
|
1348
|
+
bignumber,
|
|
1349
|
+
divide,
|
|
1350
|
+
isNegative,
|
|
1351
|
+
isPositive,
|
|
1352
|
+
larger,
|
|
1353
|
+
map,
|
|
1354
|
+
matrix,
|
|
1355
|
+
max,
|
|
1356
|
+
multiply,
|
|
1357
|
+
smaller,
|
|
1358
|
+
subtract,
|
|
1359
|
+
typed,
|
|
1360
|
+
unaryMinus
|
|
1395
1361
|
});
|
|
1396
|
-
const
|
|
1362
|
+
const Unit = exports.Unit = /* #__PURE__ */(0, _factoriesAny.createUnitClass)({
|
|
1397
1363
|
BigNumber,
|
|
1398
|
-
|
|
1399
|
-
|
|
1364
|
+
Complex,
|
|
1365
|
+
Fraction,
|
|
1366
|
+
abs,
|
|
1367
|
+
addScalar,
|
|
1368
|
+
config: _configReadonly.config,
|
|
1369
|
+
divideScalar,
|
|
1370
|
+
equal,
|
|
1371
|
+
fix,
|
|
1372
|
+
format,
|
|
1373
|
+
isNumeric,
|
|
1374
|
+
multiplyScalar,
|
|
1375
|
+
number,
|
|
1376
|
+
pow,
|
|
1377
|
+
round,
|
|
1378
|
+
subtractScalar
|
|
1400
1379
|
});
|
|
1401
|
-
const
|
|
1380
|
+
const vacuumImpedance = exports.vacuumImpedance = /* #__PURE__ */(0, _factoriesAny.createVacuumImpedance)({
|
|
1402
1381
|
BigNumber,
|
|
1403
1382
|
Unit,
|
|
1404
1383
|
config: _configReadonly.config
|
|
1405
1384
|
});
|
|
1406
|
-
const
|
|
1385
|
+
const atomicMass = exports.atomicMass = /* #__PURE__ */(0, _factoriesAny.createAtomicMass)({
|
|
1407
1386
|
BigNumber,
|
|
1408
1387
|
Unit,
|
|
1409
1388
|
config: _configReadonly.config
|
|
1410
1389
|
});
|
|
1411
|
-
const
|
|
1390
|
+
const bohrMagneton = exports.bohrMagneton = /* #__PURE__ */(0, _factoriesAny.createBohrMagneton)({
|
|
1412
1391
|
BigNumber,
|
|
1413
1392
|
Unit,
|
|
1414
1393
|
config: _configReadonly.config
|
|
1415
1394
|
});
|
|
1416
|
-
const
|
|
1395
|
+
const boltzmann = exports.boltzmann = /* #__PURE__ */(0, _factoriesAny.createBoltzmann)({
|
|
1417
1396
|
BigNumber,
|
|
1418
1397
|
Unit,
|
|
1419
1398
|
config: _configReadonly.config
|
|
1420
1399
|
});
|
|
1421
|
-
const
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1400
|
+
const column = exports.column = /* #__PURE__ */(0, _factoriesAny.createColumn)({
|
|
1401
|
+
Index,
|
|
1402
|
+
matrix,
|
|
1403
|
+
range,
|
|
1404
|
+
typed
|
|
1425
1405
|
});
|
|
1426
|
-
const
|
|
1406
|
+
const conductanceQuantum = exports.conductanceQuantum = /* #__PURE__ */(0, _factoriesAny.createConductanceQuantum)({
|
|
1427
1407
|
BigNumber,
|
|
1428
1408
|
Unit,
|
|
1429
1409
|
config: _configReadonly.config
|
|
1430
1410
|
});
|
|
1431
|
-
const
|
|
1411
|
+
const coulomb = exports.coulomb = /* #__PURE__ */(0, _factoriesAny.createCoulomb)({
|
|
1432
1412
|
BigNumber,
|
|
1433
1413
|
Unit,
|
|
1434
1414
|
config: _configReadonly.config
|
|
1435
1415
|
});
|
|
1436
|
-
const
|
|
1437
|
-
BigNumber,
|
|
1416
|
+
const createUnit = exports.createUnit = /* #__PURE__ */(0, _factoriesAny.createCreateUnit)({
|
|
1438
1417
|
Unit,
|
|
1439
|
-
|
|
1418
|
+
typed
|
|
1440
1419
|
});
|
|
1441
|
-
const
|
|
1420
|
+
const deuteronMass = exports.deuteronMass = /* #__PURE__ */(0, _factoriesAny.createDeuteronMass)({
|
|
1442
1421
|
BigNumber,
|
|
1443
1422
|
Unit,
|
|
1444
1423
|
config: _configReadonly.config
|
|
1445
1424
|
});
|
|
1446
|
-
const
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1425
|
+
const eigs = exports.eigs = /* #__PURE__ */(0, _factoriesAny.createEigs)({
|
|
1426
|
+
abs,
|
|
1427
|
+
add,
|
|
1428
|
+
addScalar,
|
|
1429
|
+
atan,
|
|
1430
|
+
bignumber,
|
|
1431
|
+
column,
|
|
1432
|
+
complex,
|
|
1433
|
+
config: _configReadonly.config,
|
|
1434
|
+
cos,
|
|
1435
|
+
diag,
|
|
1436
|
+
divideScalar,
|
|
1437
|
+
dot,
|
|
1438
|
+
equal,
|
|
1439
|
+
flatten,
|
|
1440
|
+
im,
|
|
1441
|
+
inv,
|
|
1442
|
+
larger,
|
|
1443
|
+
matrix,
|
|
1444
|
+
matrixFromColumns,
|
|
1445
|
+
multiply,
|
|
1446
|
+
multiplyScalar,
|
|
1447
|
+
number,
|
|
1448
|
+
qr,
|
|
1449
|
+
re,
|
|
1450
|
+
reshape,
|
|
1451
|
+
sin,
|
|
1452
|
+
size,
|
|
1453
|
+
smaller,
|
|
1454
|
+
sqrt,
|
|
1455
|
+
subtract,
|
|
1456
|
+
typed,
|
|
1457
|
+
usolve,
|
|
1458
|
+
usolveAll
|
|
1450
1459
|
});
|
|
1451
|
-
const
|
|
1460
|
+
const electronMass = exports.electronMass = /* #__PURE__ */(0, _factoriesAny.createElectronMass)({
|
|
1452
1461
|
BigNumber,
|
|
1453
1462
|
Unit,
|
|
1454
1463
|
config: _configReadonly.config
|
|
1455
1464
|
});
|
|
1456
|
-
const
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
config: _configReadonly.config
|
|
1465
|
+
const factorial = exports.factorial = /* #__PURE__ */(0, _factoriesAny.createFactorial)({
|
|
1466
|
+
gamma,
|
|
1467
|
+
typed
|
|
1460
1468
|
});
|
|
1461
|
-
const
|
|
1469
|
+
const fermiCoupling = exports.fermiCoupling = /* #__PURE__ */(0, _factoriesAny.createFermiCoupling)({
|
|
1462
1470
|
BigNumber,
|
|
1463
1471
|
Unit,
|
|
1464
1472
|
config: _configReadonly.config
|
|
1465
1473
|
});
|
|
1466
|
-
const
|
|
1474
|
+
const gasConstant = exports.gasConstant = /* #__PURE__ */(0, _factoriesAny.createGasConstant)({
|
|
1467
1475
|
BigNumber,
|
|
1468
1476
|
Unit,
|
|
1469
1477
|
config: _configReadonly.config
|
|
1470
1478
|
});
|
|
1471
|
-
const
|
|
1479
|
+
const gravity = exports.gravity = /* #__PURE__ */(0, _factoriesAny.createGravity)({
|
|
1472
1480
|
BigNumber,
|
|
1473
1481
|
Unit,
|
|
1474
1482
|
config: _configReadonly.config
|
|
1475
1483
|
});
|
|
1476
|
-
const
|
|
1477
|
-
divideScalar,
|
|
1478
|
-
equalScalar,
|
|
1479
|
-
inv,
|
|
1480
|
-
matrix,
|
|
1481
|
-
multiply,
|
|
1482
|
-
typed
|
|
1483
|
-
});
|
|
1484
|
-
const electronMass = exports.electronMass = /* #__PURE__ */(0, _factoriesAny.createElectronMass)({
|
|
1484
|
+
const klitzing = exports.klitzing = /* #__PURE__ */(0, _factoriesAny.createKlitzing)({
|
|
1485
1485
|
BigNumber,
|
|
1486
1486
|
Unit,
|
|
1487
1487
|
config: _configReadonly.config
|
|
1488
1488
|
});
|
|
1489
|
-
const
|
|
1490
|
-
gamma,
|
|
1491
|
-
typed
|
|
1492
|
-
});
|
|
1493
|
-
const firstRadiation = exports.firstRadiation = /* #__PURE__ */(0, _factoriesAny.createFirstRadiation)({
|
|
1489
|
+
const loschmidt = exports.loschmidt = /* #__PURE__ */(0, _factoriesAny.createLoschmidt)({
|
|
1494
1490
|
BigNumber,
|
|
1495
1491
|
Unit,
|
|
1496
1492
|
config: _configReadonly.config
|
|
1497
1493
|
});
|
|
1498
|
-
const
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1494
|
+
const mad = exports.mad = /* #__PURE__ */(0, _factoriesAny.createMad)({
|
|
1495
|
+
abs,
|
|
1496
|
+
map,
|
|
1497
|
+
median,
|
|
1498
|
+
subtract,
|
|
1499
|
+
typed
|
|
1502
1500
|
});
|
|
1503
|
-
const
|
|
1501
|
+
const magneticFluxQuantum = exports.magneticFluxQuantum = /* #__PURE__ */(0, _factoriesAny.createMagneticFluxQuantum)({
|
|
1504
1502
|
BigNumber,
|
|
1505
1503
|
Unit,
|
|
1506
1504
|
config: _configReadonly.config
|
|
1507
1505
|
});
|
|
1508
|
-
const
|
|
1509
|
-
DenseMatrix,
|
|
1510
|
-
lsolve,
|
|
1511
|
-
lup,
|
|
1512
|
-
matrix,
|
|
1513
|
-
slu,
|
|
1514
|
-
typed,
|
|
1515
|
-
usolve
|
|
1516
|
-
});
|
|
1517
|
-
const magneticFluxQuantum = exports.magneticFluxQuantum = /* #__PURE__ */(0, _factoriesAny.createMagneticFluxQuantum)({
|
|
1506
|
+
const molarMass = exports.molarMass = /* #__PURE__ */(0, _factoriesAny.createMolarMass)({
|
|
1518
1507
|
BigNumber,
|
|
1519
1508
|
Unit,
|
|
1520
1509
|
config: _configReadonly.config
|
|
1521
1510
|
});
|
|
1522
|
-
const
|
|
1511
|
+
const molarPlanckConstant = exports.molarPlanckConstant = /* #__PURE__ */(0, _factoriesAny.createMolarPlanckConstant)({
|
|
1523
1512
|
BigNumber,
|
|
1524
1513
|
Unit,
|
|
1525
1514
|
config: _configReadonly.config
|
|
@@ -1533,183 +1522,125 @@ const multinomial = exports.multinomial = /* #__PURE__ */(0, _factoriesAny.creat
|
|
|
1533
1522
|
multiply,
|
|
1534
1523
|
typed
|
|
1535
1524
|
});
|
|
1536
|
-
const
|
|
1537
|
-
factorial,
|
|
1538
|
-
typed
|
|
1539
|
-
});
|
|
1540
|
-
const planckMass = exports.planckMass = /* #__PURE__ */(0, _factoriesAny.createPlanckMass)({
|
|
1541
|
-
BigNumber,
|
|
1542
|
-
Unit,
|
|
1543
|
-
config: _configReadonly.config
|
|
1544
|
-
});
|
|
1545
|
-
const polynomialRoot = exports.polynomialRoot = /* #__PURE__ */(0, _factoriesAny.createPolynomialRoot)({
|
|
1546
|
-
add,
|
|
1547
|
-
cbrt,
|
|
1548
|
-
divide,
|
|
1549
|
-
equalScalar,
|
|
1550
|
-
im,
|
|
1551
|
-
isZero,
|
|
1552
|
-
multiply,
|
|
1553
|
-
re,
|
|
1554
|
-
sqrt,
|
|
1555
|
-
subtract,
|
|
1556
|
-
typeOf,
|
|
1557
|
-
typed,
|
|
1558
|
-
unaryMinus
|
|
1559
|
-
});
|
|
1560
|
-
const setSize = exports.setSize = /* #__PURE__ */(0, _factoriesAny.createSetSize)({
|
|
1561
|
-
compareNatural,
|
|
1562
|
-
typed
|
|
1563
|
-
});
|
|
1564
|
-
const solveODE = exports.solveODE = /* #__PURE__ */(0, _factoriesAny.createSolveODE)({
|
|
1525
|
+
const norm = exports.norm = /* #__PURE__ */(0, _factoriesAny.createNorm)({
|
|
1565
1526
|
abs,
|
|
1566
1527
|
add,
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1528
|
+
conj,
|
|
1529
|
+
ctranspose,
|
|
1530
|
+
eigs,
|
|
1531
|
+
equalScalar,
|
|
1571
1532
|
larger,
|
|
1572
|
-
map,
|
|
1573
1533
|
matrix,
|
|
1574
|
-
max,
|
|
1575
1534
|
multiply,
|
|
1535
|
+
pow,
|
|
1576
1536
|
smaller,
|
|
1577
|
-
|
|
1578
|
-
typed
|
|
1579
|
-
unaryMinus
|
|
1537
|
+
sqrt,
|
|
1538
|
+
typed
|
|
1580
1539
|
});
|
|
1581
|
-
const
|
|
1582
|
-
bignumber,
|
|
1583
|
-
addScalar,
|
|
1584
|
-
combinations,
|
|
1585
|
-
divideScalar,
|
|
1540
|
+
const permutations = exports.permutations = /* #__PURE__ */(0, _factoriesAny.createPermutations)({
|
|
1586
1541
|
factorial,
|
|
1587
|
-
isInteger,
|
|
1588
|
-
isNegative,
|
|
1589
|
-
larger,
|
|
1590
|
-
multiplyScalar,
|
|
1591
|
-
number,
|
|
1592
|
-
pow,
|
|
1593
|
-
subtractScalar,
|
|
1594
1542
|
typed
|
|
1595
1543
|
});
|
|
1596
|
-
const
|
|
1544
|
+
const planckConstant = exports.planckConstant = /* #__PURE__ */(0, _factoriesAny.createPlanckConstant)({
|
|
1545
|
+
BigNumber,
|
|
1597
1546
|
Unit,
|
|
1598
|
-
|
|
1547
|
+
config: _configReadonly.config
|
|
1599
1548
|
});
|
|
1600
|
-
const
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
stirlingS2,
|
|
1605
|
-
typed
|
|
1549
|
+
const planckMass = exports.planckMass = /* #__PURE__ */(0, _factoriesAny.createPlanckMass)({
|
|
1550
|
+
BigNumber,
|
|
1551
|
+
Unit,
|
|
1552
|
+
config: _configReadonly.config
|
|
1606
1553
|
});
|
|
1607
|
-
const
|
|
1608
|
-
|
|
1609
|
-
|
|
1554
|
+
const planckTime = exports.planckTime = /* #__PURE__ */(0, _factoriesAny.createPlanckTime)({
|
|
1555
|
+
BigNumber,
|
|
1556
|
+
Unit,
|
|
1557
|
+
config: _configReadonly.config
|
|
1558
|
+
});
|
|
1559
|
+
const reducedPlanckConstant = exports.reducedPlanckConstant = /* #__PURE__ */(0, _factoriesAny.createReducedPlanckConstant)({
|
|
1560
|
+
BigNumber,
|
|
1561
|
+
Unit,
|
|
1562
|
+
config: _configReadonly.config
|
|
1563
|
+
});
|
|
1564
|
+
const rotationMatrix = exports.rotationMatrix = /* #__PURE__ */(0, _factoriesAny.createRotationMatrix)({
|
|
1565
|
+
BigNumber,
|
|
1566
|
+
DenseMatrix,
|
|
1567
|
+
SparseMatrix,
|
|
1610
1568
|
addScalar,
|
|
1611
|
-
atan,
|
|
1612
|
-
bignumber,
|
|
1613
|
-
column,
|
|
1614
|
-
complex,
|
|
1615
1569
|
config: _configReadonly.config,
|
|
1616
1570
|
cos,
|
|
1617
|
-
diag,
|
|
1618
|
-
divideScalar,
|
|
1619
|
-
dot,
|
|
1620
|
-
equal,
|
|
1621
|
-
flatten,
|
|
1622
|
-
im,
|
|
1623
|
-
inv,
|
|
1624
|
-
larger,
|
|
1625
1571
|
matrix,
|
|
1626
|
-
matrixFromColumns,
|
|
1627
|
-
multiply,
|
|
1628
1572
|
multiplyScalar,
|
|
1629
|
-
|
|
1630
|
-
qr,
|
|
1631
|
-
re,
|
|
1632
|
-
reshape,
|
|
1573
|
+
norm,
|
|
1633
1574
|
sin,
|
|
1634
|
-
size,
|
|
1635
|
-
smaller,
|
|
1636
|
-
sqrt,
|
|
1637
|
-
subtract,
|
|
1638
1575
|
typed,
|
|
1639
|
-
|
|
1640
|
-
usolveAll
|
|
1576
|
+
unaryMinus
|
|
1641
1577
|
});
|
|
1642
|
-
const
|
|
1578
|
+
const rydberg = exports.rydberg = /* #__PURE__ */(0, _factoriesAny.createRydberg)({
|
|
1643
1579
|
BigNumber,
|
|
1644
1580
|
Unit,
|
|
1645
1581
|
config: _configReadonly.config
|
|
1646
1582
|
});
|
|
1647
|
-
const
|
|
1583
|
+
const secondRadiation = exports.secondRadiation = /* #__PURE__ */(0, _factoriesAny.createSecondRadiation)({
|
|
1648
1584
|
BigNumber,
|
|
1649
1585
|
Unit,
|
|
1650
1586
|
config: _configReadonly.config
|
|
1651
1587
|
});
|
|
1652
|
-
const
|
|
1653
|
-
|
|
1654
|
-
dotDivide,
|
|
1655
|
-
isNumeric,
|
|
1656
|
-
log,
|
|
1657
|
-
map,
|
|
1658
|
-
matrix,
|
|
1659
|
-
multiply,
|
|
1660
|
-
sum,
|
|
1588
|
+
const setSize = exports.setSize = /* #__PURE__ */(0, _factoriesAny.createSetSize)({
|
|
1589
|
+
compareNatural,
|
|
1661
1590
|
typed
|
|
1662
1591
|
});
|
|
1663
|
-
const
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1592
|
+
const speedOfLight = exports.speedOfLight = /* #__PURE__ */(0, _factoriesAny.createSpeedOfLight)({
|
|
1593
|
+
BigNumber,
|
|
1594
|
+
Unit,
|
|
1595
|
+
config: _configReadonly.config
|
|
1667
1596
|
});
|
|
1668
|
-
const
|
|
1597
|
+
const stefanBoltzmann = exports.stefanBoltzmann = /* #__PURE__ */(0, _factoriesAny.createStefanBoltzmann)({
|
|
1669
1598
|
BigNumber,
|
|
1670
1599
|
Unit,
|
|
1671
1600
|
config: _configReadonly.config
|
|
1672
1601
|
});
|
|
1673
|
-
const
|
|
1602
|
+
const thomsonCrossSection = exports.thomsonCrossSection = /* #__PURE__ */(0, _factoriesAny.createThomsonCrossSection)({
|
|
1674
1603
|
BigNumber,
|
|
1675
1604
|
Unit,
|
|
1676
1605
|
config: _configReadonly.config
|
|
1677
1606
|
});
|
|
1678
|
-
const
|
|
1679
|
-
bignumber,
|
|
1607
|
+
const variance = exports.variance = /* #__PURE__ */(0, _factoriesAny.createVariance)({
|
|
1680
1608
|
add,
|
|
1681
|
-
compare,
|
|
1682
1609
|
divide,
|
|
1683
|
-
|
|
1684
|
-
larger,
|
|
1610
|
+
isNaN,
|
|
1685
1611
|
mapSlices,
|
|
1686
1612
|
multiply,
|
|
1687
|
-
partitionSelect,
|
|
1688
|
-
smaller,
|
|
1689
|
-
smallerEq,
|
|
1690
1613
|
subtract,
|
|
1691
1614
|
typed
|
|
1692
1615
|
});
|
|
1693
|
-
const
|
|
1616
|
+
const zeta = exports.zeta = /* #__PURE__ */(0, _factoriesAny.createZeta)({
|
|
1617
|
+
BigNumber,
|
|
1618
|
+
Complex,
|
|
1694
1619
|
add,
|
|
1620
|
+
config: _configReadonly.config,
|
|
1695
1621
|
divide,
|
|
1696
|
-
|
|
1697
|
-
|
|
1622
|
+
equal,
|
|
1623
|
+
factorial,
|
|
1624
|
+
gamma,
|
|
1625
|
+
isBounded,
|
|
1626
|
+
isNegative,
|
|
1698
1627
|
multiply,
|
|
1628
|
+
pi,
|
|
1629
|
+
pow,
|
|
1630
|
+
sin,
|
|
1631
|
+
smallerEq,
|
|
1699
1632
|
subtract,
|
|
1700
1633
|
typed
|
|
1701
1634
|
});
|
|
1702
|
-
const
|
|
1635
|
+
const avogadro = exports.avogadro = /* #__PURE__ */(0, _factoriesAny.createAvogadro)({
|
|
1703
1636
|
BigNumber,
|
|
1704
1637
|
Unit,
|
|
1705
1638
|
config: _configReadonly.config
|
|
1706
1639
|
});
|
|
1707
|
-
const
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
partitionSelect,
|
|
1712
|
-
typed
|
|
1640
|
+
const bohrRadius = exports.bohrRadius = /* #__PURE__ */(0, _factoriesAny.createBohrRadius)({
|
|
1641
|
+
BigNumber,
|
|
1642
|
+
Unit,
|
|
1643
|
+
config: _configReadonly.config
|
|
1713
1644
|
});
|
|
1714
1645
|
const corr = exports.corr = /* #__PURE__ */(0, _factoriesAny.createCorr)({
|
|
1715
1646
|
add,
|
|
@@ -1723,19 +1654,71 @@ const corr = exports.corr = /* #__PURE__ */(0, _factoriesAny.createCorr)({
|
|
|
1723
1654
|
sum,
|
|
1724
1655
|
typed
|
|
1725
1656
|
});
|
|
1726
|
-
const
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1657
|
+
const dotPow = exports.dotPow = /* #__PURE__ */(0, _factoriesAny.createDotPow)({
|
|
1658
|
+
DenseMatrix,
|
|
1659
|
+
SparseMatrix,
|
|
1660
|
+
concat,
|
|
1661
|
+
equalScalar,
|
|
1730
1662
|
matrix,
|
|
1731
|
-
|
|
1663
|
+
pow,
|
|
1732
1664
|
typed
|
|
1733
1665
|
});
|
|
1734
|
-
const
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1666
|
+
const elementaryCharge = exports.elementaryCharge = /* #__PURE__ */(0, _factoriesAny.createElementaryCharge)({
|
|
1667
|
+
BigNumber,
|
|
1668
|
+
Unit,
|
|
1669
|
+
config: _configReadonly.config
|
|
1670
|
+
});
|
|
1671
|
+
const faraday = exports.faraday = /* #__PURE__ */(0, _factoriesAny.createFaraday)({
|
|
1672
|
+
BigNumber,
|
|
1673
|
+
Unit,
|
|
1674
|
+
config: _configReadonly.config
|
|
1675
|
+
});
|
|
1676
|
+
const hartreeEnergy = exports.hartreeEnergy = /* #__PURE__ */(0, _factoriesAny.createHartreeEnergy)({
|
|
1677
|
+
BigNumber,
|
|
1678
|
+
Unit,
|
|
1679
|
+
config: _configReadonly.config
|
|
1680
|
+
});
|
|
1681
|
+
const inverseConductanceQuantum = exports.inverseConductanceQuantum = /* #__PURE__ */(0, _factoriesAny.createInverseConductanceQuantum)({
|
|
1682
|
+
BigNumber,
|
|
1683
|
+
Unit,
|
|
1684
|
+
config: _configReadonly.config
|
|
1685
|
+
});
|
|
1686
|
+
const magneticConstant = exports.magneticConstant = /* #__PURE__ */(0, _factoriesAny.createMagneticConstant)({
|
|
1687
|
+
BigNumber,
|
|
1688
|
+
Unit,
|
|
1689
|
+
config: _configReadonly.config
|
|
1690
|
+
});
|
|
1691
|
+
const molarMassC12 = exports.molarMassC12 = /* #__PURE__ */(0, _factoriesAny.createMolarMassC12)({
|
|
1692
|
+
BigNumber,
|
|
1693
|
+
Unit,
|
|
1694
|
+
config: _configReadonly.config
|
|
1695
|
+
});
|
|
1696
|
+
const neutronMass = exports.neutronMass = /* #__PURE__ */(0, _factoriesAny.createNeutronMass)({
|
|
1697
|
+
BigNumber,
|
|
1698
|
+
Unit,
|
|
1699
|
+
config: _configReadonly.config
|
|
1700
|
+
});
|
|
1701
|
+
const planckCharge = exports.planckCharge = /* #__PURE__ */(0, _factoriesAny.createPlanckCharge)({
|
|
1702
|
+
BigNumber,
|
|
1703
|
+
Unit,
|
|
1704
|
+
config: _configReadonly.config
|
|
1705
|
+
});
|
|
1706
|
+
const planckTemperature = exports.planckTemperature = /* #__PURE__ */(0, _factoriesAny.createPlanckTemperature)({
|
|
1707
|
+
BigNumber,
|
|
1708
|
+
Unit,
|
|
1709
|
+
config: _configReadonly.config
|
|
1710
|
+
});
|
|
1711
|
+
const quantumOfCirculation = exports.quantumOfCirculation = /* #__PURE__ */(0, _factoriesAny.createQuantumOfCirculation)({
|
|
1712
|
+
BigNumber,
|
|
1713
|
+
Unit,
|
|
1714
|
+
config: _configReadonly.config
|
|
1715
|
+
});
|
|
1716
|
+
const setIntersect = exports.setIntersect = /* #__PURE__ */(0, _factoriesAny.createSetIntersect)({
|
|
1717
|
+
DenseMatrix,
|
|
1718
|
+
Index,
|
|
1719
|
+
compareNatural,
|
|
1720
|
+
size,
|
|
1721
|
+
subset,
|
|
1739
1722
|
typed
|
|
1740
1723
|
});
|
|
1741
1724
|
const std = exports.std = /* #__PURE__ */(0, _factoriesAny.createStd)({
|
|
@@ -1744,54 +1727,77 @@ const std = exports.std = /* #__PURE__ */(0, _factoriesAny.createStd)({
|
|
|
1744
1727
|
typed,
|
|
1745
1728
|
variance
|
|
1746
1729
|
});
|
|
1747
|
-
const
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
divide,
|
|
1753
|
-
equal,
|
|
1730
|
+
const stirlingS2 = exports.stirlingS2 = /* #__PURE__ */(0, _factoriesAny.createStirlingS2)({
|
|
1731
|
+
bignumber,
|
|
1732
|
+
addScalar,
|
|
1733
|
+
combinations,
|
|
1734
|
+
divideScalar,
|
|
1754
1735
|
factorial,
|
|
1755
|
-
|
|
1736
|
+
isInteger,
|
|
1756
1737
|
isNegative,
|
|
1757
|
-
|
|
1758
|
-
|
|
1738
|
+
larger,
|
|
1739
|
+
multiplyScalar,
|
|
1740
|
+
number,
|
|
1759
1741
|
pow,
|
|
1760
|
-
|
|
1761
|
-
smallerEq,
|
|
1762
|
-
subtract,
|
|
1742
|
+
subtractScalar,
|
|
1763
1743
|
typed
|
|
1764
1744
|
});
|
|
1765
|
-
const
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1745
|
+
const unit = exports.unit = /* #__PURE__ */(0, _factoriesAny.createUnitFunction)({
|
|
1746
|
+
Unit,
|
|
1747
|
+
typed
|
|
1748
|
+
});
|
|
1749
|
+
const bellNumbers = exports.bellNumbers = /* #__PURE__ */(0, _factoriesAny.createBellNumbers)({
|
|
1750
|
+
addScalar,
|
|
1751
|
+
isInteger,
|
|
1752
|
+
isNegative,
|
|
1753
|
+
stirlingS2,
|
|
1754
|
+
typed
|
|
1755
|
+
});
|
|
1756
|
+
const electricConstant = exports.electricConstant = /* #__PURE__ */(0, _factoriesAny.createElectricConstant)({
|
|
1757
|
+
BigNumber,
|
|
1758
|
+
Unit,
|
|
1759
|
+
config: _configReadonly.config
|
|
1760
|
+
});
|
|
1761
|
+
const firstRadiation = exports.firstRadiation = /* #__PURE__ */(0, _factoriesAny.createFirstRadiation)({
|
|
1762
|
+
BigNumber,
|
|
1763
|
+
Unit,
|
|
1764
|
+
config: _configReadonly.config
|
|
1765
|
+
});
|
|
1766
|
+
const nuclearMagneton = exports.nuclearMagneton = /* #__PURE__ */(0, _factoriesAny.createNuclearMagneton)({
|
|
1767
|
+
BigNumber,
|
|
1768
|
+
Unit,
|
|
1769
|
+
config: _configReadonly.config
|
|
1770
|
+
});
|
|
1771
|
+
const planckLength = exports.planckLength = /* #__PURE__ */(0, _factoriesAny.createPlanckLength)({
|
|
1772
|
+
BigNumber,
|
|
1773
|
+
Unit,
|
|
1774
|
+
config: _configReadonly.config
|
|
1775
|
+
});
|
|
1776
|
+
const rotate = exports.rotate = /* #__PURE__ */(0, _factoriesAny.createRotate)({
|
|
1774
1777
|
multiply,
|
|
1775
|
-
|
|
1776
|
-
smaller,
|
|
1777
|
-
sqrt,
|
|
1778
|
+
rotationMatrix,
|
|
1778
1779
|
typed
|
|
1779
1780
|
});
|
|
1780
|
-
const
|
|
1781
|
+
const setUnion = exports.setUnion = /* #__PURE__ */(0, _factoriesAny.createSetUnion)({
|
|
1782
|
+
Index,
|
|
1783
|
+
concat,
|
|
1784
|
+
setIntersect,
|
|
1785
|
+
setSymDifference,
|
|
1786
|
+
size,
|
|
1787
|
+
subset,
|
|
1788
|
+
typed
|
|
1789
|
+
});
|
|
1790
|
+
const wienDisplacement = exports.wienDisplacement = /* #__PURE__ */(0, _factoriesAny.createWienDisplacement)({
|
|
1781
1791
|
BigNumber,
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
addScalar,
|
|
1785
|
-
config: _configReadonly.config,
|
|
1786
|
-
cos,
|
|
1787
|
-
matrix,
|
|
1788
|
-
multiplyScalar,
|
|
1789
|
-
norm,
|
|
1790
|
-
sin,
|
|
1791
|
-
typed,
|
|
1792
|
-
unaryMinus
|
|
1792
|
+
Unit,
|
|
1793
|
+
config: _configReadonly.config
|
|
1793
1794
|
});
|
|
1794
|
-
const
|
|
1795
|
+
const classicalElectronRadius = exports.classicalElectronRadius = /* #__PURE__ */(0, _factoriesAny.createClassicalElectronRadius)({
|
|
1796
|
+
BigNumber,
|
|
1797
|
+
Unit,
|
|
1798
|
+
config: _configReadonly.config
|
|
1799
|
+
});
|
|
1800
|
+
const molarVolume = exports.molarVolume = /* #__PURE__ */(0, _factoriesAny.createMolarVolume)({
|
|
1795
1801
|
BigNumber,
|
|
1796
1802
|
Unit,
|
|
1797
1803
|
config: _configReadonly.config
|
|
@@ -1805,10 +1811,20 @@ const schur = exports.schur = /* #__PURE__ */(0, _factoriesAny.createSchur)({
|
|
|
1805
1811
|
subtract,
|
|
1806
1812
|
typed
|
|
1807
1813
|
});
|
|
1808
|
-
const
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1814
|
+
const coulombConstant = exports.coulombConstant = /* #__PURE__ */(0, _factoriesAny.createCoulombConstant)({
|
|
1815
|
+
BigNumber,
|
|
1816
|
+
Unit,
|
|
1817
|
+
config: _configReadonly.config
|
|
1818
|
+
});
|
|
1819
|
+
const gravitationConstant = exports.gravitationConstant = /* #__PURE__ */(0, _factoriesAny.createGravitationConstant)({
|
|
1820
|
+
BigNumber,
|
|
1821
|
+
Unit,
|
|
1822
|
+
config: _configReadonly.config
|
|
1823
|
+
});
|
|
1824
|
+
const protonMass = exports.protonMass = /* #__PURE__ */(0, _factoriesAny.createProtonMass)({
|
|
1825
|
+
BigNumber,
|
|
1826
|
+
Unit,
|
|
1827
|
+
config: _configReadonly.config
|
|
1812
1828
|
});
|
|
1813
1829
|
const sylvester = exports.sylvester = /* #__PURE__ */(0, _factoriesAny.createSylvester)({
|
|
1814
1830
|
abs,
|