mathjs 14.9.1 → 15.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/HISTORY.md +35 -0
- 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/core/config.js +5 -1
- package/lib/cjs/core/function/config.js +4 -0
- 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/dependenciesSize.generated.js +0 -2
- 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/dependenciesSize.generated.js +0 -2
- 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 +223 -218
- package/lib/cjs/entry/impureFunctionsNumber.generated.js +82 -77
- package/lib/cjs/entry/pureFunctionsAny.generated.js +717 -702
- package/lib/cjs/entry/pureFunctionsNumber.generated.js +155 -142
- 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/node/IndexNode.js +1 -1
- package/lib/cjs/expression/parse.js +74 -46
- 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/algebra/sylvester.js +6 -5
- package/lib/cjs/function/arithmetic/nthRoots.js +5 -1
- package/lib/cjs/function/logical/nullish.js +2 -2
- package/lib/cjs/function/matrix/column.js +2 -1
- package/lib/cjs/function/matrix/dot.js +4 -9
- package/lib/cjs/function/matrix/flatten.js +6 -3
- package/lib/cjs/function/matrix/kron.js +31 -30
- package/lib/cjs/function/matrix/row.js +2 -1
- package/lib/cjs/function/matrix/size.js +11 -17
- package/lib/cjs/function/matrix/subset.js +21 -11
- 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/DenseMatrix.js +52 -41
- package/lib/cjs/type/matrix/MatrixIndex.js +19 -20
- package/lib/cjs/type/matrix/SparseMatrix.js +37 -11
- 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/core/config.js +5 -1
- package/lib/esm/core/function/config.js +4 -0
- 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/dependenciesSize.generated.js +0 -2
- 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/dependenciesSize.generated.js +0 -2
- 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 +225 -220
- package/lib/esm/entry/impureFunctionsNumber.generated.js +84 -79
- package/lib/esm/entry/pureFunctionsAny.generated.js +714 -699
- package/lib/esm/entry/pureFunctionsNumber.generated.js +154 -141
- 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/node/IndexNode.js +1 -1
- package/lib/esm/expression/parse.js +74 -46
- 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/algebra/sylvester.js +6 -5
- package/lib/esm/function/arithmetic/nthRoots.js +5 -1
- package/lib/esm/function/logical/nullish.js +2 -2
- package/lib/esm/function/matrix/column.js +2 -1
- package/lib/esm/function/matrix/dot.js +4 -9
- package/lib/esm/function/matrix/flatten.js +6 -3
- package/lib/esm/function/matrix/kron.js +31 -30
- package/lib/esm/function/matrix/row.js +2 -1
- package/lib/esm/function/matrix/size.js +11 -17
- package/lib/esm/function/matrix/subset.js +21 -11
- 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/DenseMatrix.js +52 -41
- package/lib/esm/type/matrix/MatrixIndex.js +20 -21
- package/lib/esm/type/matrix/SparseMatrix.js +37 -11
- 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
|
/**
|
|
@@ -70,7 +70,8 @@ const tau = exports.tau = /* #__PURE__ */(0, _factoriesAny.createTau)({
|
|
|
70
70
|
const _true = exports._true = /* #__PURE__ */(0, _factoriesAny.createTrue)({});
|
|
71
71
|
const version = exports.version = /* #__PURE__ */(0, _factoriesAny.createVersion)({});
|
|
72
72
|
const DenseMatrix = exports.DenseMatrix = /* #__PURE__ */(0, _factoriesAny.createDenseMatrixClass)({
|
|
73
|
-
Matrix
|
|
73
|
+
Matrix,
|
|
74
|
+
config: _configReadonly.config
|
|
74
75
|
});
|
|
75
76
|
const efimovFactor = exports.efimovFactor = /* #__PURE__ */(0, _factoriesAny.createEfimovFactor)({
|
|
76
77
|
BigNumber,
|
|
@@ -212,19 +213,16 @@ const hex = exports.hex = /* #__PURE__ */(0, _factoriesAny.createHex)({
|
|
|
212
213
|
const im = exports.im = /* #__PURE__ */(0, _factoriesAny.createIm)({
|
|
213
214
|
typed
|
|
214
215
|
});
|
|
215
|
-
const
|
|
216
|
+
const isBounded = exports.isBounded = /* #__PURE__ */(0, _factoriesAny.createIsBounded)({
|
|
216
217
|
typed
|
|
217
218
|
});
|
|
218
|
-
const
|
|
219
|
-
config: _configReadonly.config,
|
|
219
|
+
const isNaN = exports.isNaN = /* #__PURE__ */(0, _factoriesAny.createIsNaN)({
|
|
220
220
|
typed
|
|
221
221
|
});
|
|
222
|
-
const
|
|
223
|
-
config: _configReadonly.config,
|
|
222
|
+
const isNumeric = exports.isNumeric = /* #__PURE__ */(0, _factoriesAny.createIsNumeric)({
|
|
224
223
|
typed
|
|
225
224
|
});
|
|
226
|
-
const
|
|
227
|
-
equalScalar,
|
|
225
|
+
const isPrime = exports.isPrime = /* #__PURE__ */(0, _factoriesAny.createIsPrime)({
|
|
228
226
|
typed
|
|
229
227
|
});
|
|
230
228
|
const LOG2E = exports.LOG2E = /* #__PURE__ */(0, _factoriesAny.createLOG2E)({
|
|
@@ -248,6 +246,11 @@ const log2 = exports.log2 = /* #__PURE__ */(0, _factoriesAny.createLog2)({
|
|
|
248
246
|
const map = exports.map = /* #__PURE__ */(0, _factoriesAny.createMap)({
|
|
249
247
|
typed
|
|
250
248
|
});
|
|
249
|
+
const mode = exports.mode = /* #__PURE__ */(0, _factoriesAny.createMode)({
|
|
250
|
+
isNaN,
|
|
251
|
+
isNumeric,
|
|
252
|
+
typed
|
|
253
|
+
});
|
|
251
254
|
const multiplyScalar = exports.multiplyScalar = /* #__PURE__ */(0, _factoriesAny.createMultiplyScalar)({
|
|
252
255
|
typed
|
|
253
256
|
});
|
|
@@ -288,6 +291,9 @@ const sign = exports.sign = /* #__PURE__ */(0, _factoriesAny.createSign)({
|
|
|
288
291
|
const sin = exports.sin = /* #__PURE__ */(0, _factoriesAny.createSin)({
|
|
289
292
|
typed
|
|
290
293
|
});
|
|
294
|
+
const size = exports.size = /* #__PURE__ */(0, _factoriesAny.createSize)({
|
|
295
|
+
typed
|
|
296
|
+
});
|
|
291
297
|
const SparseMatrix = exports.SparseMatrix = /* #__PURE__ */(0, _factoriesAny.createSparseMatrixClass)({
|
|
292
298
|
Matrix,
|
|
293
299
|
equalScalar,
|
|
@@ -343,17 +349,30 @@ const csch = exports.csch = /* #__PURE__ */(0, _factoriesAny.createCsch)({
|
|
|
343
349
|
BigNumber,
|
|
344
350
|
typed
|
|
345
351
|
});
|
|
346
|
-
const
|
|
352
|
+
const dot = exports.dot = /* #__PURE__ */(0, _factoriesAny.createDot)({
|
|
353
|
+
addScalar,
|
|
354
|
+
conj,
|
|
355
|
+
multiplyScalar,
|
|
356
|
+
size,
|
|
347
357
|
typed
|
|
348
358
|
});
|
|
349
|
-
const
|
|
359
|
+
const hasNumericValue = exports.hasNumericValue = /* #__PURE__ */(0, _factoriesAny.createHasNumericValue)({
|
|
360
|
+
isNumeric,
|
|
350
361
|
typed
|
|
351
362
|
});
|
|
352
|
-
const
|
|
353
|
-
|
|
363
|
+
const isFinite = exports.isFinite = /* #__PURE__ */(0, _factoriesAny.createIsFinite)({
|
|
364
|
+
isBounded,
|
|
365
|
+
map,
|
|
366
|
+
typed
|
|
367
|
+
});
|
|
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,
|
|
354
374
|
typed
|
|
355
375
|
});
|
|
356
|
-
const apply = exports.apply = mapSlices;
|
|
357
376
|
const matrix = exports.matrix = /* #__PURE__ */(0, _factoriesAny.createMatrix)({
|
|
358
377
|
DenseMatrix,
|
|
359
378
|
Matrix,
|
|
@@ -365,6 +384,14 @@ const matrixFromFunction = exports.matrixFromFunction = /* #__PURE__ */(0, _fact
|
|
|
365
384
|
matrix,
|
|
366
385
|
typed
|
|
367
386
|
});
|
|
387
|
+
const multiply = exports.multiply = /* #__PURE__ */(0, _factoriesAny.createMultiply)({
|
|
388
|
+
addScalar,
|
|
389
|
+
dot,
|
|
390
|
+
equalScalar,
|
|
391
|
+
matrix,
|
|
392
|
+
multiplyScalar,
|
|
393
|
+
typed
|
|
394
|
+
});
|
|
368
395
|
const ones = exports.ones = /* #__PURE__ */(0, _factoriesAny.createOnes)({
|
|
369
396
|
BigNumber,
|
|
370
397
|
config: _configReadonly.config,
|
|
@@ -376,10 +403,9 @@ const randomInt = exports.randomInt = /* #__PURE__ */(0, _factoriesAny.createRan
|
|
|
376
403
|
log2,
|
|
377
404
|
typed
|
|
378
405
|
});
|
|
379
|
-
const
|
|
380
|
-
|
|
381
|
-
matrix
|
|
382
|
-
typed
|
|
406
|
+
const resize = exports.resize = /* #__PURE__ */(0, _factoriesAny.createResize)({
|
|
407
|
+
config: _configReadonly.config,
|
|
408
|
+
matrix
|
|
383
409
|
});
|
|
384
410
|
const sech = exports.sech = /* #__PURE__ */(0, _factoriesAny.createSech)({
|
|
385
411
|
BigNumber,
|
|
@@ -434,11 +460,6 @@ const bin = exports.bin = /* #__PURE__ */(0, _factoriesAny.createBin)({
|
|
|
434
460
|
format,
|
|
435
461
|
typed
|
|
436
462
|
});
|
|
437
|
-
const concat = exports.concat = /* #__PURE__ */(0, _factoriesAny.createConcat)({
|
|
438
|
-
isInteger,
|
|
439
|
-
matrix,
|
|
440
|
-
typed
|
|
441
|
-
});
|
|
442
463
|
const coth = exports.coth = /* #__PURE__ */(0, _factoriesAny.createCoth)({
|
|
443
464
|
BigNumber,
|
|
444
465
|
typed
|
|
@@ -454,17 +475,9 @@ const diag = exports.diag = /* #__PURE__ */(0, _factoriesAny.createDiag)({
|
|
|
454
475
|
matrix,
|
|
455
476
|
typed
|
|
456
477
|
});
|
|
457
|
-
const dotMultiply = exports.dotMultiply = /* #__PURE__ */(0, _factoriesAny.createDotMultiply)({
|
|
458
|
-
concat,
|
|
459
|
-
equalScalar,
|
|
460
|
-
matrix,
|
|
461
|
-
multiplyScalar,
|
|
462
|
-
typed
|
|
463
|
-
});
|
|
464
478
|
const equal = exports.equal = /* #__PURE__ */(0, _factoriesAny.createEqual)({
|
|
465
479
|
DenseMatrix,
|
|
466
480
|
SparseMatrix,
|
|
467
|
-
concat,
|
|
468
481
|
equalScalar,
|
|
469
482
|
matrix,
|
|
470
483
|
typed
|
|
@@ -481,7 +494,8 @@ const identity = exports.identity = /* #__PURE__ */(0, _factoriesAny.createIdent
|
|
|
481
494
|
matrix,
|
|
482
495
|
typed
|
|
483
496
|
});
|
|
484
|
-
const
|
|
497
|
+
const isInteger = exports.isInteger = /* #__PURE__ */(0, _factoriesAny.createIsInteger)({
|
|
498
|
+
equal,
|
|
485
499
|
typed
|
|
486
500
|
});
|
|
487
501
|
const kron = exports.kron = /* #__PURE__ */(0, _factoriesAny.createKron)({
|
|
@@ -489,32 +503,15 @@ const kron = exports.kron = /* #__PURE__ */(0, _factoriesAny.createKron)({
|
|
|
489
503
|
multiplyScalar,
|
|
490
504
|
typed
|
|
491
505
|
});
|
|
492
|
-
const
|
|
493
|
-
|
|
494
|
-
SparseMatrix,
|
|
495
|
-
concat,
|
|
496
|
-
config: _configReadonly.config,
|
|
497
|
-
matrix,
|
|
498
|
-
typed
|
|
499
|
-
});
|
|
500
|
-
const leftShift = exports.leftShift = /* #__PURE__ */(0, _factoriesAny.createLeftShift)({
|
|
501
|
-
DenseMatrix,
|
|
502
|
-
concat,
|
|
503
|
-
equalScalar,
|
|
504
|
-
matrix,
|
|
505
|
-
typed,
|
|
506
|
-
zeros
|
|
507
|
-
});
|
|
508
|
-
const mode = exports.mode = /* #__PURE__ */(0, _factoriesAny.createMode)({
|
|
509
|
-
isNaN,
|
|
510
|
-
isNumeric,
|
|
506
|
+
const mapSlices = exports.mapSlices = /* #__PURE__ */(0, _factoriesAny.createMapSlices)({
|
|
507
|
+
isInteger,
|
|
511
508
|
typed
|
|
512
509
|
});
|
|
513
|
-
const
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
equalScalar,
|
|
510
|
+
const apply = exports.apply = mapSlices;
|
|
511
|
+
const matrixFromColumns = exports.matrixFromColumns = /* #__PURE__ */(0, _factoriesAny.createMatrixFromColumns)({
|
|
512
|
+
flatten,
|
|
517
513
|
matrix,
|
|
514
|
+
size,
|
|
518
515
|
typed
|
|
519
516
|
});
|
|
520
517
|
const numeric = exports.numeric = /* #__PURE__ */(0, _factoriesAny.createNumeric)({
|
|
@@ -528,17 +525,10 @@ const prod = exports.prod = /* #__PURE__ */(0, _factoriesAny.createProd)({
|
|
|
528
525
|
numeric,
|
|
529
526
|
typed
|
|
530
527
|
});
|
|
531
|
-
const
|
|
532
|
-
|
|
533
|
-
matrix
|
|
534
|
-
});
|
|
535
|
-
const rightArithShift = exports.rightArithShift = /* #__PURE__ */(0, _factoriesAny.createRightArithShift)({
|
|
536
|
-
DenseMatrix,
|
|
537
|
-
concat,
|
|
538
|
-
equalScalar,
|
|
528
|
+
const reshape = exports.reshape = /* #__PURE__ */(0, _factoriesAny.createReshape)({
|
|
529
|
+
isInteger,
|
|
539
530
|
matrix,
|
|
540
|
-
typed
|
|
541
|
-
zeros
|
|
531
|
+
typed
|
|
542
532
|
});
|
|
543
533
|
const round = exports.round = /* #__PURE__ */(0, _factoriesAny.createRound)({
|
|
544
534
|
BigNumber,
|
|
@@ -549,79 +539,15 @@ const round = exports.round = /* #__PURE__ */(0, _factoriesAny.createRound)({
|
|
|
549
539
|
typed,
|
|
550
540
|
zeros
|
|
551
541
|
});
|
|
552
|
-
const size = exports.size = /* #__PURE__ */(0, _factoriesAny.createSize)({
|
|
553
|
-
matrix,
|
|
554
|
-
config: _configReadonly.config,
|
|
555
|
-
typed
|
|
556
|
-
});
|
|
557
|
-
const smaller = exports.smaller = /* #__PURE__ */(0, _factoriesAny.createSmaller)({
|
|
558
|
-
DenseMatrix,
|
|
559
|
-
SparseMatrix,
|
|
560
|
-
bignumber,
|
|
561
|
-
concat,
|
|
562
|
-
config: _configReadonly.config,
|
|
563
|
-
matrix,
|
|
564
|
-
typed
|
|
565
|
-
});
|
|
566
|
-
const to = exports.to = /* #__PURE__ */(0, _factoriesAny.createTo)({
|
|
567
|
-
concat,
|
|
568
|
-
matrix,
|
|
569
|
-
typed
|
|
570
|
-
});
|
|
571
542
|
const unaryMinus = exports.unaryMinus = /* #__PURE__ */(0, _factoriesAny.createUnaryMinus)({
|
|
572
543
|
typed
|
|
573
544
|
});
|
|
574
|
-
const
|
|
575
|
-
DenseMatrix,
|
|
576
|
-
SparseMatrix,
|
|
577
|
-
concat,
|
|
578
|
-
config: _configReadonly.config,
|
|
579
|
-
equalScalar,
|
|
580
|
-
matrix,
|
|
581
|
-
typed
|
|
582
|
-
});
|
|
583
|
-
const xor = exports.xor = /* #__PURE__ */(0, _factoriesAny.createXor)({
|
|
584
|
-
DenseMatrix,
|
|
585
|
-
SparseMatrix,
|
|
586
|
-
concat,
|
|
587
|
-
matrix,
|
|
588
|
-
typed
|
|
589
|
-
});
|
|
590
|
-
const add = exports.add = /* #__PURE__ */(0, _factoriesAny.createAdd)({
|
|
591
|
-
DenseMatrix,
|
|
592
|
-
SparseMatrix,
|
|
593
|
-
addScalar,
|
|
594
|
-
concat,
|
|
595
|
-
equalScalar,
|
|
596
|
-
matrix,
|
|
597
|
-
typed
|
|
598
|
-
});
|
|
599
|
-
const atan2 = exports.atan2 = /* #__PURE__ */(0, _factoriesAny.createAtan2)({
|
|
545
|
+
const bernoulli = exports.bernoulli = /* #__PURE__ */(0, _factoriesAny.createBernoulli)({
|
|
600
546
|
BigNumber,
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
typed
|
|
606
|
-
});
|
|
607
|
-
const bitAnd = exports.bitAnd = /* #__PURE__ */(0, _factoriesAny.createBitAnd)({
|
|
608
|
-
concat,
|
|
609
|
-
equalScalar,
|
|
610
|
-
matrix,
|
|
611
|
-
typed
|
|
612
|
-
});
|
|
613
|
-
const bitOr = exports.bitOr = /* #__PURE__ */(0, _factoriesAny.createBitOr)({
|
|
614
|
-
DenseMatrix,
|
|
615
|
-
concat,
|
|
616
|
-
equalScalar,
|
|
617
|
-
matrix,
|
|
618
|
-
typed
|
|
619
|
-
});
|
|
620
|
-
const bitXor = exports.bitXor = /* #__PURE__ */(0, _factoriesAny.createBitXor)({
|
|
621
|
-
DenseMatrix,
|
|
622
|
-
SparseMatrix,
|
|
623
|
-
concat,
|
|
624
|
-
matrix,
|
|
547
|
+
Fraction,
|
|
548
|
+
config: _configReadonly.config,
|
|
549
|
+
isInteger,
|
|
550
|
+
number,
|
|
625
551
|
typed
|
|
626
552
|
});
|
|
627
553
|
const cbrt = exports.cbrt = /* #__PURE__ */(0, _factoriesAny.createCbrt)({
|
|
@@ -634,18 +560,8 @@ const cbrt = exports.cbrt = /* #__PURE__ */(0, _factoriesAny.createCbrt)({
|
|
|
634
560
|
typed,
|
|
635
561
|
unaryMinus
|
|
636
562
|
});
|
|
637
|
-
const
|
|
638
|
-
|
|
639
|
-
DenseMatrix,
|
|
640
|
-
Fraction,
|
|
641
|
-
concat,
|
|
642
|
-
config: _configReadonly.config,
|
|
643
|
-
equalScalar,
|
|
644
|
-
matrix,
|
|
645
|
-
typed
|
|
646
|
-
});
|
|
647
|
-
const compareText = exports.compareText = /* #__PURE__ */(0, _factoriesAny.createCompareText)({
|
|
648
|
-
concat,
|
|
563
|
+
const concat = exports.concat = /* #__PURE__ */(0, _factoriesAny.createConcat)({
|
|
564
|
+
isInteger,
|
|
649
565
|
matrix,
|
|
650
566
|
typed
|
|
651
567
|
});
|
|
@@ -662,18 +578,11 @@ const divideScalar = exports.divideScalar = /* #__PURE__ */(0, _factoriesAny.cre
|
|
|
662
578
|
numeric,
|
|
663
579
|
typed
|
|
664
580
|
});
|
|
665
|
-
const
|
|
666
|
-
DenseMatrix,
|
|
667
|
-
SparseMatrix,
|
|
581
|
+
const dotMultiply = exports.dotMultiply = /* #__PURE__ */(0, _factoriesAny.createDotMultiply)({
|
|
668
582
|
concat,
|
|
669
|
-
divideScalar,
|
|
670
583
|
equalScalar,
|
|
671
584
|
matrix,
|
|
672
|
-
|
|
673
|
-
});
|
|
674
|
-
const equalText = exports.equalText = /* #__PURE__ */(0, _factoriesAny.createEqualText)({
|
|
675
|
-
compareText,
|
|
676
|
-
isZero,
|
|
585
|
+
multiplyScalar,
|
|
677
586
|
typed
|
|
678
587
|
});
|
|
679
588
|
const floor = exports.floor = /* #__PURE__ */(0, _factoriesAny.createFloor)({
|
|
@@ -696,28 +605,10 @@ const gcd = exports.gcd = /* #__PURE__ */(0, _factoriesAny.createGcd)({
|
|
|
696
605
|
typed,
|
|
697
606
|
zeros
|
|
698
607
|
});
|
|
699
|
-
const
|
|
700
|
-
|
|
701
|
-
typed
|
|
702
|
-
});
|
|
703
|
-
const hypot = exports.hypot = /* #__PURE__ */(0, _factoriesAny.createHypot)({
|
|
704
|
-
abs,
|
|
705
|
-
addScalar,
|
|
706
|
-
divideScalar,
|
|
707
|
-
isPositive,
|
|
708
|
-
multiplyScalar,
|
|
709
|
-
smaller,
|
|
710
|
-
sqrt,
|
|
608
|
+
const isPositive = exports.isPositive = /* #__PURE__ */(0, _factoriesAny.createIsPositive)({
|
|
609
|
+
config: _configReadonly.config,
|
|
711
610
|
typed
|
|
712
611
|
});
|
|
713
|
-
const ImmutableDenseMatrix = exports.ImmutableDenseMatrix = /* #__PURE__ */(0, _factoriesAny.createImmutableDenseMatrixClass)({
|
|
714
|
-
DenseMatrix,
|
|
715
|
-
smaller
|
|
716
|
-
});
|
|
717
|
-
const Index = exports.Index = /* #__PURE__ */(0, _factoriesAny.createIndexClass)({
|
|
718
|
-
ImmutableDenseMatrix,
|
|
719
|
-
getMatrixDataType
|
|
720
|
-
});
|
|
721
612
|
const larger = exports.larger = /* #__PURE__ */(0, _factoriesAny.createLarger)({
|
|
722
613
|
DenseMatrix,
|
|
723
614
|
SparseMatrix,
|
|
@@ -727,13 +618,20 @@ const larger = exports.larger = /* #__PURE__ */(0, _factoriesAny.createLarger)({
|
|
|
727
618
|
matrix,
|
|
728
619
|
typed
|
|
729
620
|
});
|
|
730
|
-
const
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
typeOf,
|
|
621
|
+
const lcm = exports.lcm = /* #__PURE__ */(0, _factoriesAny.createLcm)({
|
|
622
|
+
concat,
|
|
623
|
+
equalScalar,
|
|
624
|
+
matrix,
|
|
735
625
|
typed
|
|
736
626
|
});
|
|
627
|
+
const leftShift = exports.leftShift = /* #__PURE__ */(0, _factoriesAny.createLeftShift)({
|
|
628
|
+
DenseMatrix,
|
|
629
|
+
concat,
|
|
630
|
+
equalScalar,
|
|
631
|
+
matrix,
|
|
632
|
+
typed,
|
|
633
|
+
zeros
|
|
634
|
+
});
|
|
737
635
|
const lsolve = exports.lsolve = /* #__PURE__ */(0, _factoriesAny.createLsolve)({
|
|
738
636
|
DenseMatrix,
|
|
739
637
|
divideScalar,
|
|
@@ -743,12 +641,6 @@ const lsolve = exports.lsolve = /* #__PURE__ */(0, _factoriesAny.createLsolve)({
|
|
|
743
641
|
subtractScalar,
|
|
744
642
|
typed
|
|
745
643
|
});
|
|
746
|
-
const matrixFromColumns = exports.matrixFromColumns = /* #__PURE__ */(0, _factoriesAny.createMatrixFromColumns)({
|
|
747
|
-
flatten,
|
|
748
|
-
matrix,
|
|
749
|
-
size,
|
|
750
|
-
typed
|
|
751
|
-
});
|
|
752
644
|
const max = exports.max = /* #__PURE__ */(0, _factoriesAny.createMax)({
|
|
753
645
|
config: _configReadonly.config,
|
|
754
646
|
isNaN,
|
|
@@ -756,13 +648,6 @@ const max = exports.max = /* #__PURE__ */(0, _factoriesAny.createMax)({
|
|
|
756
648
|
numeric,
|
|
757
649
|
typed
|
|
758
650
|
});
|
|
759
|
-
const min = exports.min = /* #__PURE__ */(0, _factoriesAny.createMin)({
|
|
760
|
-
config: _configReadonly.config,
|
|
761
|
-
isNaN,
|
|
762
|
-
numeric,
|
|
763
|
-
smaller,
|
|
764
|
-
typed
|
|
765
|
-
});
|
|
766
651
|
const mod = exports.mod = /* #__PURE__ */(0, _factoriesAny.createMod)({
|
|
767
652
|
DenseMatrix,
|
|
768
653
|
concat,
|
|
@@ -773,10 +658,11 @@ const mod = exports.mod = /* #__PURE__ */(0, _factoriesAny.createMod)({
|
|
|
773
658
|
typed,
|
|
774
659
|
zeros
|
|
775
660
|
});
|
|
776
|
-
const
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
661
|
+
const nthRoot = exports.nthRoot = /* #__PURE__ */(0, _factoriesAny.createNthRoot)({
|
|
662
|
+
BigNumber,
|
|
663
|
+
concat,
|
|
664
|
+
equalScalar,
|
|
665
|
+
matrix,
|
|
780
666
|
typed
|
|
781
667
|
});
|
|
782
668
|
const nullish = exports.nullish = /* #__PURE__ */(0, _factoriesAny.createNullish)({
|
|
@@ -793,12 +679,6 @@ const or = exports.or = /* #__PURE__ */(0, _factoriesAny.createOr)({
|
|
|
793
679
|
matrix,
|
|
794
680
|
typed
|
|
795
681
|
});
|
|
796
|
-
const partitionSelect = exports.partitionSelect = /* #__PURE__ */(0, _factoriesAny.createPartitionSelect)({
|
|
797
|
-
compare,
|
|
798
|
-
isNaN,
|
|
799
|
-
isNumeric,
|
|
800
|
-
typed
|
|
801
|
-
});
|
|
802
682
|
const qr = exports.qr = /* #__PURE__ */(0, _factoriesAny.createQr)({
|
|
803
683
|
addScalar,
|
|
804
684
|
complex,
|
|
@@ -816,7 +696,7 @@ const qr = exports.qr = /* #__PURE__ */(0, _factoriesAny.createQr)({
|
|
|
816
696
|
unaryMinus,
|
|
817
697
|
zeros
|
|
818
698
|
});
|
|
819
|
-
const
|
|
699
|
+
const rightArithShift = exports.rightArithShift = /* #__PURE__ */(0, _factoriesAny.createRightArithShift)({
|
|
820
700
|
DenseMatrix,
|
|
821
701
|
concat,
|
|
822
702
|
equalScalar,
|
|
@@ -824,20 +704,15 @@ const rightLogShift = exports.rightLogShift = /* #__PURE__ */(0, _factoriesAny.c
|
|
|
824
704
|
typed,
|
|
825
705
|
zeros
|
|
826
706
|
});
|
|
827
|
-
const
|
|
707
|
+
const smaller = exports.smaller = /* #__PURE__ */(0, _factoriesAny.createSmaller)({
|
|
828
708
|
DenseMatrix,
|
|
829
709
|
SparseMatrix,
|
|
710
|
+
bignumber,
|
|
830
711
|
concat,
|
|
831
712
|
config: _configReadonly.config,
|
|
832
713
|
matrix,
|
|
833
714
|
typed
|
|
834
715
|
});
|
|
835
|
-
const subset = exports.subset = /* #__PURE__ */(0, _factoriesAny.createSubset)({
|
|
836
|
-
add,
|
|
837
|
-
matrix,
|
|
838
|
-
typed,
|
|
839
|
-
zeros
|
|
840
|
-
});
|
|
841
716
|
const subtract = exports.subtract = /* #__PURE__ */(0, _factoriesAny.createSubtract)({
|
|
842
717
|
DenseMatrix,
|
|
843
718
|
concat,
|
|
@@ -847,11 +722,16 @@ const subtract = exports.subtract = /* #__PURE__ */(0, _factoriesAny.createSubtr
|
|
|
847
722
|
typed,
|
|
848
723
|
unaryMinus
|
|
849
724
|
});
|
|
850
|
-
const
|
|
851
|
-
|
|
725
|
+
const to = exports.to = /* #__PURE__ */(0, _factoriesAny.createTo)({
|
|
726
|
+
concat,
|
|
852
727
|
matrix,
|
|
853
728
|
typed
|
|
854
729
|
});
|
|
730
|
+
const unaryPlus = exports.unaryPlus = /* #__PURE__ */(0, _factoriesAny.createUnaryPlus)({
|
|
731
|
+
config: _configReadonly.config,
|
|
732
|
+
numeric,
|
|
733
|
+
typed
|
|
734
|
+
});
|
|
855
735
|
const usolve = exports.usolve = /* #__PURE__ */(0, _factoriesAny.createUsolve)({
|
|
856
736
|
DenseMatrix,
|
|
857
737
|
divideScalar,
|
|
@@ -861,6 +741,50 @@ const usolve = exports.usolve = /* #__PURE__ */(0, _factoriesAny.createUsolve)({
|
|
|
861
741
|
subtractScalar,
|
|
862
742
|
typed
|
|
863
743
|
});
|
|
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,
|
|
786
|
+
typed
|
|
787
|
+
});
|
|
864
788
|
const catalan = exports.catalan = /* #__PURE__ */(0, _factoriesAny.createCatalan)({
|
|
865
789
|
addScalar,
|
|
866
790
|
combinations,
|
|
@@ -870,8 +794,19 @@ const catalan = exports.catalan = /* #__PURE__ */(0, _factoriesAny.createCatalan
|
|
|
870
794
|
multiplyScalar,
|
|
871
795
|
typed
|
|
872
796
|
});
|
|
873
|
-
const
|
|
874
|
-
|
|
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,
|
|
875
810
|
typed
|
|
876
811
|
});
|
|
877
812
|
const composition = exports.composition = /* #__PURE__ */(0, _factoriesAny.createComposition)({
|
|
@@ -883,6 +818,21 @@ const composition = exports.composition = /* #__PURE__ */(0, _factoriesAny.creat
|
|
|
883
818
|
larger,
|
|
884
819
|
typed
|
|
885
820
|
});
|
|
821
|
+
const cross = exports.cross = /* #__PURE__ */(0, _factoriesAny.createCross)({
|
|
822
|
+
matrix,
|
|
823
|
+
multiply,
|
|
824
|
+
subtract,
|
|
825
|
+
typed
|
|
826
|
+
});
|
|
827
|
+
const det = exports.det = /* #__PURE__ */(0, _factoriesAny.createDet)({
|
|
828
|
+
divideScalar,
|
|
829
|
+
isZero,
|
|
830
|
+
matrix,
|
|
831
|
+
multiply,
|
|
832
|
+
subtractScalar,
|
|
833
|
+
typed,
|
|
834
|
+
unaryMinus
|
|
835
|
+
});
|
|
886
836
|
const diff = exports.diff = /* #__PURE__ */(0, _factoriesAny.createDiff)({
|
|
887
837
|
matrix,
|
|
888
838
|
number,
|
|
@@ -899,19 +849,57 @@ const distance = exports.distance = /* #__PURE__ */(0, _factoriesAny.createDista
|
|
|
899
849
|
subtractScalar,
|
|
900
850
|
typed
|
|
901
851
|
});
|
|
902
|
-
const
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
852
|
+
const dotDivide = exports.dotDivide = /* #__PURE__ */(0, _factoriesAny.createDotDivide)({
|
|
853
|
+
DenseMatrix,
|
|
854
|
+
SparseMatrix,
|
|
855
|
+
concat,
|
|
856
|
+
divideScalar,
|
|
857
|
+
equalScalar,
|
|
858
|
+
matrix,
|
|
859
|
+
typed
|
|
860
|
+
});
|
|
861
|
+
const equalText = exports.equalText = /* #__PURE__ */(0, _factoriesAny.createEqualText)({
|
|
862
|
+
compareText,
|
|
863
|
+
isZero,
|
|
907
864
|
typed
|
|
908
865
|
});
|
|
909
866
|
const FibonacciHeap = exports.FibonacciHeap = /* #__PURE__ */(0, _factoriesAny.createFibonacciHeapClass)({
|
|
910
867
|
larger,
|
|
911
868
|
smaller
|
|
912
869
|
});
|
|
913
|
-
const
|
|
914
|
-
|
|
870
|
+
const hypot = exports.hypot = /* #__PURE__ */(0, _factoriesAny.createHypot)({
|
|
871
|
+
abs,
|
|
872
|
+
addScalar,
|
|
873
|
+
divideScalar,
|
|
874
|
+
isPositive,
|
|
875
|
+
multiplyScalar,
|
|
876
|
+
smaller,
|
|
877
|
+
sqrt,
|
|
878
|
+
typed
|
|
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
|
+
});
|
|
888
|
+
const intersect = exports.intersect = /* #__PURE__ */(0, _factoriesAny.createIntersect)({
|
|
889
|
+
abs,
|
|
890
|
+
add,
|
|
891
|
+
addScalar,
|
|
892
|
+
config: _configReadonly.config,
|
|
893
|
+
divideScalar,
|
|
894
|
+
equalScalar,
|
|
895
|
+
flatten,
|
|
896
|
+
isNumeric,
|
|
897
|
+
isZero,
|
|
898
|
+
matrix,
|
|
899
|
+
multiply,
|
|
900
|
+
multiplyScalar,
|
|
901
|
+
smaller,
|
|
902
|
+
subtract,
|
|
915
903
|
typed
|
|
916
904
|
});
|
|
917
905
|
const invmod = exports.invmod = /* #__PURE__ */(0, _factoriesAny.createInvmod)({
|
|
@@ -925,17 +913,19 @@ const invmod = exports.invmod = /* #__PURE__ */(0, _factoriesAny.createInvmod)({
|
|
|
925
913
|
typed,
|
|
926
914
|
xgcd
|
|
927
915
|
});
|
|
928
|
-
const
|
|
916
|
+
const largerEq = exports.largerEq = /* #__PURE__ */(0, _factoriesAny.createLargerEq)({
|
|
917
|
+
DenseMatrix,
|
|
918
|
+
SparseMatrix,
|
|
929
919
|
concat,
|
|
930
|
-
|
|
920
|
+
config: _configReadonly.config,
|
|
931
921
|
matrix,
|
|
932
922
|
typed
|
|
933
923
|
});
|
|
934
|
-
const
|
|
924
|
+
const log = exports.log = /* #__PURE__ */(0, _factoriesAny.createLog)({
|
|
935
925
|
Complex,
|
|
936
926
|
config: _configReadonly.config,
|
|
937
927
|
divideScalar,
|
|
938
|
-
|
|
928
|
+
typeOf,
|
|
939
929
|
typed
|
|
940
930
|
});
|
|
941
931
|
const lsolveAll = exports.lsolveAll = /* #__PURE__ */(0, _factoriesAny.createLsolveAll)({
|
|
@@ -953,63 +943,32 @@ const matrixFromRows = exports.matrixFromRows = /* #__PURE__ */(0, _factoriesAny
|
|
|
953
943
|
size,
|
|
954
944
|
typed
|
|
955
945
|
});
|
|
956
|
-
const
|
|
957
|
-
addScalar,
|
|
958
|
-
dot,
|
|
959
|
-
equalScalar,
|
|
960
|
-
matrix,
|
|
961
|
-
multiplyScalar,
|
|
962
|
-
typed
|
|
963
|
-
});
|
|
964
|
-
const range = exports.range = /* #__PURE__ */(0, _factoriesAny.createRange)({
|
|
965
|
-
bignumber,
|
|
966
|
-
matrix,
|
|
967
|
-
add,
|
|
946
|
+
const min = exports.min = /* #__PURE__ */(0, _factoriesAny.createMin)({
|
|
968
947
|
config: _configReadonly.config,
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
isZero,
|
|
972
|
-
larger,
|
|
973
|
-
largerEq,
|
|
948
|
+
isNaN,
|
|
949
|
+
numeric,
|
|
974
950
|
smaller,
|
|
975
|
-
smallerEq,
|
|
976
951
|
typed
|
|
977
952
|
});
|
|
978
|
-
const
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
953
|
+
const nthRoots = exports.nthRoots = /* #__PURE__ */(0, _factoriesAny.createNthRoots)({
|
|
954
|
+
Complex,
|
|
955
|
+
config: _configReadonly.config,
|
|
956
|
+
divideScalar,
|
|
982
957
|
typed
|
|
983
958
|
});
|
|
984
|
-
const
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
size,
|
|
989
|
-
subset,
|
|
959
|
+
const partitionSelect = exports.partitionSelect = /* #__PURE__ */(0, _factoriesAny.createPartitionSelect)({
|
|
960
|
+
compare,
|
|
961
|
+
isNaN,
|
|
962
|
+
isNumeric,
|
|
990
963
|
typed
|
|
991
964
|
});
|
|
992
|
-
const
|
|
965
|
+
const rightLogShift = exports.rightLogShift = /* #__PURE__ */(0, _factoriesAny.createRightLogShift)({
|
|
993
966
|
DenseMatrix,
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
});
|
|
1000
|
-
const setIsSubset = exports.setIsSubset = /* #__PURE__ */(0, _factoriesAny.createSetIsSubset)({
|
|
1001
|
-
Index,
|
|
1002
|
-
compareNatural,
|
|
1003
|
-
size,
|
|
1004
|
-
subset,
|
|
1005
|
-
typed
|
|
1006
|
-
});
|
|
1007
|
-
const setPowerset = exports.setPowerset = /* #__PURE__ */(0, _factoriesAny.createSetPowerset)({
|
|
1008
|
-
Index,
|
|
1009
|
-
compareNatural,
|
|
1010
|
-
size,
|
|
1011
|
-
subset,
|
|
1012
|
-
typed
|
|
967
|
+
concat,
|
|
968
|
+
equalScalar,
|
|
969
|
+
matrix,
|
|
970
|
+
typed,
|
|
971
|
+
zeros
|
|
1013
972
|
});
|
|
1014
973
|
const slu = exports.slu = /* #__PURE__ */(0, _factoriesAny.createSlu)({
|
|
1015
974
|
SparseMatrix,
|
|
@@ -1023,15 +982,26 @@ const slu = exports.slu = /* #__PURE__ */(0, _factoriesAny.createSlu)({
|
|
|
1023
982
|
transpose,
|
|
1024
983
|
typed
|
|
1025
984
|
});
|
|
1026
|
-
const
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
typed
|
|
985
|
+
const Spa = exports.Spa = /* #__PURE__ */(0, _factoriesAny.createSpaClass)({
|
|
986
|
+
FibonacciHeap,
|
|
987
|
+
addScalar,
|
|
988
|
+
equalScalar
|
|
1031
989
|
});
|
|
1032
|
-
const
|
|
1033
|
-
|
|
1034
|
-
|
|
990
|
+
const subset = exports.subset = /* #__PURE__ */(0, _factoriesAny.createSubset)({
|
|
991
|
+
add,
|
|
992
|
+
matrix,
|
|
993
|
+
typed,
|
|
994
|
+
zeros
|
|
995
|
+
});
|
|
996
|
+
const sum = exports.sum = /* #__PURE__ */(0, _factoriesAny.createSum)({
|
|
997
|
+
add,
|
|
998
|
+
config: _configReadonly.config,
|
|
999
|
+
numeric,
|
|
1000
|
+
typed
|
|
1001
|
+
});
|
|
1002
|
+
const trace = exports.trace = /* #__PURE__ */(0, _factoriesAny.createTrace)({
|
|
1003
|
+
add,
|
|
1004
|
+
matrix,
|
|
1035
1005
|
typed
|
|
1036
1006
|
});
|
|
1037
1007
|
const usolveAll = exports.usolveAll = /* #__PURE__ */(0, _factoriesAny.createUsolveAll)({
|
|
@@ -1050,14 +1020,6 @@ const zpk2tf = exports.zpk2tf = /* #__PURE__ */(0, _factoriesAny.createZpk2tf)({
|
|
|
1050
1020
|
number,
|
|
1051
1021
|
typed
|
|
1052
1022
|
});
|
|
1053
|
-
const and = exports.and = /* #__PURE__ */(0, _factoriesAny.createAnd)({
|
|
1054
|
-
concat,
|
|
1055
|
-
equalScalar,
|
|
1056
|
-
matrix,
|
|
1057
|
-
not,
|
|
1058
|
-
typed,
|
|
1059
|
-
zeros
|
|
1060
|
-
});
|
|
1061
1023
|
const ceil = exports.ceil = /* #__PURE__ */(0, _factoriesAny.createCeil)({
|
|
1062
1024
|
DenseMatrix,
|
|
1063
1025
|
config: _configReadonly.config,
|
|
@@ -1067,26 +1029,14 @@ const ceil = exports.ceil = /* #__PURE__ */(0, _factoriesAny.createCeil)({
|
|
|
1067
1029
|
typed,
|
|
1068
1030
|
zeros
|
|
1069
1031
|
});
|
|
1070
|
-
const
|
|
1071
|
-
|
|
1072
|
-
matrix,
|
|
1073
|
-
range,
|
|
1074
|
-
typed
|
|
1075
|
-
});
|
|
1076
|
-
const cross = exports.cross = /* #__PURE__ */(0, _factoriesAny.createCross)({
|
|
1077
|
-
matrix,
|
|
1078
|
-
multiply,
|
|
1079
|
-
subtract,
|
|
1032
|
+
const compareNatural = exports.compareNatural = /* #__PURE__ */(0, _factoriesAny.createCompareNatural)({
|
|
1033
|
+
compare,
|
|
1080
1034
|
typed
|
|
1081
1035
|
});
|
|
1082
|
-
const
|
|
1083
|
-
|
|
1084
|
-
isZero,
|
|
1085
|
-
matrix,
|
|
1086
|
-
multiply,
|
|
1087
|
-
subtractScalar,
|
|
1036
|
+
const cumsum = exports.cumsum = /* #__PURE__ */(0, _factoriesAny.createCumSum)({
|
|
1037
|
+
add,
|
|
1088
1038
|
typed,
|
|
1089
|
-
|
|
1039
|
+
unaryPlus
|
|
1090
1040
|
});
|
|
1091
1041
|
const fix = exports.fix = /* #__PURE__ */(0, _factoriesAny.createFix)({
|
|
1092
1042
|
Complex,
|
|
@@ -1098,6 +1048,10 @@ const fix = exports.fix = /* #__PURE__ */(0, _factoriesAny.createFix)({
|
|
|
1098
1048
|
typed,
|
|
1099
1049
|
zeros
|
|
1100
1050
|
});
|
|
1051
|
+
const index = exports.index = /* #__PURE__ */(0, _factoriesAny.createIndex)({
|
|
1052
|
+
Index,
|
|
1053
|
+
typed
|
|
1054
|
+
});
|
|
1101
1055
|
const inv = exports.inv = /* #__PURE__ */(0, _factoriesAny.createInv)({
|
|
1102
1056
|
abs,
|
|
1103
1057
|
addScalar,
|
|
@@ -1109,6 +1063,28 @@ const inv = exports.inv = /* #__PURE__ */(0, _factoriesAny.createInv)({
|
|
|
1109
1063
|
typed,
|
|
1110
1064
|
unaryMinus
|
|
1111
1065
|
});
|
|
1066
|
+
const log1p = exports.log1p = /* #__PURE__ */(0, _factoriesAny.createLog1p)({
|
|
1067
|
+
Complex,
|
|
1068
|
+
config: _configReadonly.config,
|
|
1069
|
+
divideScalar,
|
|
1070
|
+
log,
|
|
1071
|
+
typed
|
|
1072
|
+
});
|
|
1073
|
+
const lup = exports.lup = /* #__PURE__ */(0, _factoriesAny.createLup)({
|
|
1074
|
+
DenseMatrix,
|
|
1075
|
+
Spa,
|
|
1076
|
+
SparseMatrix,
|
|
1077
|
+
abs,
|
|
1078
|
+
addScalar,
|
|
1079
|
+
divideScalar,
|
|
1080
|
+
equalScalar,
|
|
1081
|
+
larger,
|
|
1082
|
+
matrix,
|
|
1083
|
+
multiplyScalar,
|
|
1084
|
+
subtractScalar,
|
|
1085
|
+
typed,
|
|
1086
|
+
unaryMinus
|
|
1087
|
+
});
|
|
1112
1088
|
const pinv = exports.pinv = /* #__PURE__ */(0, _factoriesAny.createPinv)({
|
|
1113
1089
|
Complex,
|
|
1114
1090
|
add,
|
|
@@ -1134,7 +1110,7 @@ const pow = exports.pow = /* #__PURE__ */(0, _factoriesAny.createPow)({
|
|
|
1134
1110
|
number,
|
|
1135
1111
|
typed
|
|
1136
1112
|
});
|
|
1137
|
-
const
|
|
1113
|
+
const setCartesian = exports.setCartesian = /* #__PURE__ */(0, _factoriesAny.createSetCartesian)({
|
|
1138
1114
|
DenseMatrix,
|
|
1139
1115
|
Index,
|
|
1140
1116
|
compareNatural,
|
|
@@ -1142,25 +1118,41 @@ const setDifference = exports.setDifference = /* #__PURE__ */(0, _factoriesAny.c
|
|
|
1142
1118
|
subset,
|
|
1143
1119
|
typed
|
|
1144
1120
|
});
|
|
1145
|
-
const
|
|
1121
|
+
const setDistinct = exports.setDistinct = /* #__PURE__ */(0, _factoriesAny.createSetDistinct)({
|
|
1122
|
+
DenseMatrix,
|
|
1146
1123
|
Index,
|
|
1147
1124
|
compareNatural,
|
|
1148
1125
|
size,
|
|
1149
1126
|
subset,
|
|
1150
1127
|
typed
|
|
1151
1128
|
});
|
|
1152
|
-
const
|
|
1129
|
+
const setIsSubset = exports.setIsSubset = /* #__PURE__ */(0, _factoriesAny.createSetIsSubset)({
|
|
1153
1130
|
Index,
|
|
1154
|
-
|
|
1155
|
-
setDifference,
|
|
1131
|
+
compareNatural,
|
|
1156
1132
|
size,
|
|
1157
1133
|
subset,
|
|
1158
1134
|
typed
|
|
1159
1135
|
});
|
|
1160
|
-
const
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1136
|
+
const setPowerset = exports.setPowerset = /* #__PURE__ */(0, _factoriesAny.createSetPowerset)({
|
|
1137
|
+
Index,
|
|
1138
|
+
compareNatural,
|
|
1139
|
+
size,
|
|
1140
|
+
subset,
|
|
1141
|
+
typed
|
|
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
|
|
1164
1156
|
});
|
|
1165
1157
|
const sqrtm = exports.sqrtm = /* #__PURE__ */(0, _factoriesAny.createSqrtm)({
|
|
1166
1158
|
abs,
|
|
@@ -1175,93 +1167,30 @@ const sqrtm = exports.sqrtm = /* #__PURE__ */(0, _factoriesAny.createSqrtm)({
|
|
|
1175
1167
|
subtract,
|
|
1176
1168
|
typed
|
|
1177
1169
|
});
|
|
1178
|
-
const
|
|
1179
|
-
add,
|
|
1180
|
-
config: _configReadonly.config,
|
|
1181
|
-
numeric,
|
|
1182
|
-
typed
|
|
1183
|
-
});
|
|
1184
|
-
const Unit = exports.Unit = /* #__PURE__ */(0, _factoriesAny.createUnitClass)({
|
|
1185
|
-
BigNumber,
|
|
1186
|
-
Complex,
|
|
1187
|
-
Fraction,
|
|
1188
|
-
abs,
|
|
1189
|
-
addScalar,
|
|
1190
|
-
config: _configReadonly.config,
|
|
1191
|
-
divideScalar,
|
|
1192
|
-
equal,
|
|
1193
|
-
fix,
|
|
1194
|
-
format,
|
|
1195
|
-
isNumeric,
|
|
1196
|
-
multiplyScalar,
|
|
1197
|
-
number,
|
|
1198
|
-
pow,
|
|
1199
|
-
round,
|
|
1200
|
-
subtractScalar,
|
|
1201
|
-
toBest
|
|
1202
|
-
});
|
|
1203
|
-
const vacuumImpedance = exports.vacuumImpedance = /* #__PURE__ */(0, _factoriesAny.createVacuumImpedance)({
|
|
1204
|
-
BigNumber,
|
|
1205
|
-
Unit,
|
|
1206
|
-
config: _configReadonly.config
|
|
1207
|
-
});
|
|
1208
|
-
const wienDisplacement = exports.wienDisplacement = /* #__PURE__ */(0, _factoriesAny.createWienDisplacement)({
|
|
1209
|
-
BigNumber,
|
|
1210
|
-
Unit,
|
|
1211
|
-
config: _configReadonly.config
|
|
1212
|
-
});
|
|
1213
|
-
const atomicMass = exports.atomicMass = /* #__PURE__ */(0, _factoriesAny.createAtomicMass)({
|
|
1214
|
-
BigNumber,
|
|
1215
|
-
Unit,
|
|
1216
|
-
config: _configReadonly.config
|
|
1217
|
-
});
|
|
1218
|
-
const bohrMagneton = exports.bohrMagneton = /* #__PURE__ */(0, _factoriesAny.createBohrMagneton)({
|
|
1219
|
-
BigNumber,
|
|
1220
|
-
Unit,
|
|
1221
|
-
config: _configReadonly.config
|
|
1222
|
-
});
|
|
1223
|
-
const boltzmann = exports.boltzmann = /* #__PURE__ */(0, _factoriesAny.createBoltzmann)({
|
|
1224
|
-
BigNumber,
|
|
1225
|
-
Unit,
|
|
1226
|
-
config: _configReadonly.config
|
|
1227
|
-
});
|
|
1228
|
-
const conductanceQuantum = exports.conductanceQuantum = /* #__PURE__ */(0, _factoriesAny.createConductanceQuantum)({
|
|
1229
|
-
BigNumber,
|
|
1230
|
-
Unit,
|
|
1231
|
-
config: _configReadonly.config
|
|
1232
|
-
});
|
|
1233
|
-
const coulomb = exports.coulomb = /* #__PURE__ */(0, _factoriesAny.createCoulomb)({
|
|
1234
|
-
BigNumber,
|
|
1235
|
-
Unit,
|
|
1236
|
-
config: _configReadonly.config
|
|
1237
|
-
});
|
|
1238
|
-
const createUnit = exports.createUnit = /* #__PURE__ */(0, _factoriesAny.createCreateUnit)({
|
|
1239
|
-
Unit,
|
|
1240
|
-
typed
|
|
1241
|
-
});
|
|
1242
|
-
const deuteronMass = exports.deuteronMass = /* #__PURE__ */(0, _factoriesAny.createDeuteronMass)({
|
|
1243
|
-
BigNumber,
|
|
1244
|
-
Unit,
|
|
1245
|
-
config: _configReadonly.config
|
|
1246
|
-
});
|
|
1247
|
-
const dotPow = exports.dotPow = /* #__PURE__ */(0, _factoriesAny.createDotPow)({
|
|
1170
|
+
const unequal = exports.unequal = /* #__PURE__ */(0, _factoriesAny.createUnequal)({
|
|
1248
1171
|
DenseMatrix,
|
|
1249
1172
|
SparseMatrix,
|
|
1250
1173
|
concat,
|
|
1174
|
+
config: _configReadonly.config,
|
|
1251
1175
|
equalScalar,
|
|
1252
1176
|
matrix,
|
|
1253
|
-
pow,
|
|
1254
1177
|
typed
|
|
1255
1178
|
});
|
|
1256
|
-
const
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1179
|
+
const and = exports.and = /* #__PURE__ */(0, _factoriesAny.createAnd)({
|
|
1180
|
+
concat,
|
|
1181
|
+
equalScalar,
|
|
1182
|
+
matrix,
|
|
1183
|
+
not,
|
|
1184
|
+
typed,
|
|
1185
|
+
zeros
|
|
1260
1186
|
});
|
|
1261
|
-
const
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1187
|
+
const divide = exports.divide = /* #__PURE__ */(0, _factoriesAny.createDivide)({
|
|
1188
|
+
divideScalar,
|
|
1189
|
+
equalScalar,
|
|
1190
|
+
inv,
|
|
1191
|
+
matrix,
|
|
1192
|
+
multiply,
|
|
1193
|
+
typed
|
|
1265
1194
|
});
|
|
1266
1195
|
const expm = exports.expm = /* #__PURE__ */(0, _factoriesAny.createExpm)({
|
|
1267
1196
|
abs,
|
|
@@ -1271,11 +1200,6 @@ const expm = exports.expm = /* #__PURE__ */(0, _factoriesAny.createExpm)({
|
|
|
1271
1200
|
multiply,
|
|
1272
1201
|
typed
|
|
1273
1202
|
});
|
|
1274
|
-
const faraday = exports.faraday = /* #__PURE__ */(0, _factoriesAny.createFaraday)({
|
|
1275
|
-
BigNumber,
|
|
1276
|
-
Unit,
|
|
1277
|
-
config: _configReadonly.config
|
|
1278
|
-
});
|
|
1279
1203
|
const fft = exports.fft = /* #__PURE__ */(0, _factoriesAny.createFft)({
|
|
1280
1204
|
addScalar,
|
|
1281
1205
|
ceil,
|
|
@@ -1291,6 +1215,14 @@ const fft = exports.fft = /* #__PURE__ */(0, _factoriesAny.createFft)({
|
|
|
1291
1215
|
tau,
|
|
1292
1216
|
typed
|
|
1293
1217
|
});
|
|
1218
|
+
const freqz = exports.freqz = /* #__PURE__ */(0, _factoriesAny.createFreqz)({
|
|
1219
|
+
Complex,
|
|
1220
|
+
add,
|
|
1221
|
+
divide,
|
|
1222
|
+
matrix,
|
|
1223
|
+
multiply,
|
|
1224
|
+
typed
|
|
1225
|
+
});
|
|
1294
1226
|
const gamma = exports.gamma = /* #__PURE__ */(0, _factoriesAny.createGamma)({
|
|
1295
1227
|
BigNumber,
|
|
1296
1228
|
Complex,
|
|
@@ -1299,238 +1231,488 @@ const gamma = exports.gamma = /* #__PURE__ */(0, _factoriesAny.createGamma)({
|
|
|
1299
1231
|
pow,
|
|
1300
1232
|
typed
|
|
1301
1233
|
});
|
|
1302
|
-
const gravitationConstant = exports.gravitationConstant = /* #__PURE__ */(0, _factoriesAny.createGravitationConstant)({
|
|
1303
|
-
BigNumber,
|
|
1304
|
-
Unit,
|
|
1305
|
-
config: _configReadonly.config
|
|
1306
|
-
});
|
|
1307
|
-
const hartreeEnergy = exports.hartreeEnergy = /* #__PURE__ */(0, _factoriesAny.createHartreeEnergy)({
|
|
1308
|
-
BigNumber,
|
|
1309
|
-
Unit,
|
|
1310
|
-
config: _configReadonly.config
|
|
1311
|
-
});
|
|
1312
1234
|
const ifft = exports.ifft = /* #__PURE__ */(0, _factoriesAny.createIfft)({
|
|
1313
1235
|
conj,
|
|
1314
1236
|
dotDivide,
|
|
1315
1237
|
fft,
|
|
1316
1238
|
typed
|
|
1317
1239
|
});
|
|
1318
|
-
const
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
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
|
|
1322
1250
|
});
|
|
1323
|
-
const
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1251
|
+
const lusolve = exports.lusolve = /* #__PURE__ */(0, _factoriesAny.createLusolve)({
|
|
1252
|
+
DenseMatrix,
|
|
1253
|
+
lsolve,
|
|
1254
|
+
lup,
|
|
1255
|
+
matrix,
|
|
1256
|
+
slu,
|
|
1257
|
+
typed,
|
|
1258
|
+
usolve
|
|
1327
1259
|
});
|
|
1328
|
-
const
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1260
|
+
const mean = exports.mean = /* #__PURE__ */(0, _factoriesAny.createMean)({
|
|
1261
|
+
add,
|
|
1262
|
+
divide,
|
|
1263
|
+
typed
|
|
1332
1264
|
});
|
|
1333
|
-
const
|
|
1265
|
+
const median = exports.median = /* #__PURE__ */(0, _factoriesAny.createMedian)({
|
|
1266
|
+
add,
|
|
1267
|
+
compare,
|
|
1268
|
+
divide,
|
|
1269
|
+
partitionSelect,
|
|
1270
|
+
typed
|
|
1271
|
+
});
|
|
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
|
|
1361
|
+
});
|
|
1362
|
+
const Unit = exports.Unit = /* #__PURE__ */(0, _factoriesAny.createUnitClass)({
|
|
1363
|
+
BigNumber,
|
|
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
|
|
1379
|
+
});
|
|
1380
|
+
const vacuumImpedance = exports.vacuumImpedance = /* #__PURE__ */(0, _factoriesAny.createVacuumImpedance)({
|
|
1334
1381
|
BigNumber,
|
|
1335
1382
|
Unit,
|
|
1336
1383
|
config: _configReadonly.config
|
|
1337
1384
|
});
|
|
1338
|
-
const
|
|
1385
|
+
const atomicMass = exports.atomicMass = /* #__PURE__ */(0, _factoriesAny.createAtomicMass)({
|
|
1339
1386
|
BigNumber,
|
|
1340
1387
|
Unit,
|
|
1341
1388
|
config: _configReadonly.config
|
|
1342
1389
|
});
|
|
1343
|
-
const
|
|
1390
|
+
const bohrMagneton = exports.bohrMagneton = /* #__PURE__ */(0, _factoriesAny.createBohrMagneton)({
|
|
1344
1391
|
BigNumber,
|
|
1345
1392
|
Unit,
|
|
1346
1393
|
config: _configReadonly.config
|
|
1347
1394
|
});
|
|
1348
|
-
const
|
|
1395
|
+
const boltzmann = exports.boltzmann = /* #__PURE__ */(0, _factoriesAny.createBoltzmann)({
|
|
1349
1396
|
BigNumber,
|
|
1350
1397
|
Unit,
|
|
1351
1398
|
config: _configReadonly.config
|
|
1352
1399
|
});
|
|
1353
|
-
const
|
|
1400
|
+
const column = exports.column = /* #__PURE__ */(0, _factoriesAny.createColumn)({
|
|
1401
|
+
Index,
|
|
1402
|
+
matrix,
|
|
1403
|
+
range,
|
|
1404
|
+
typed
|
|
1405
|
+
});
|
|
1406
|
+
const conductanceQuantum = exports.conductanceQuantum = /* #__PURE__ */(0, _factoriesAny.createConductanceQuantum)({
|
|
1354
1407
|
BigNumber,
|
|
1355
1408
|
Unit,
|
|
1356
1409
|
config: _configReadonly.config
|
|
1357
1410
|
});
|
|
1358
|
-
const
|
|
1411
|
+
const coulomb = exports.coulomb = /* #__PURE__ */(0, _factoriesAny.createCoulomb)({
|
|
1359
1412
|
BigNumber,
|
|
1360
1413
|
Unit,
|
|
1361
1414
|
config: _configReadonly.config
|
|
1362
1415
|
});
|
|
1363
|
-
const
|
|
1416
|
+
const createUnit = exports.createUnit = /* #__PURE__ */(0, _factoriesAny.createCreateUnit)({
|
|
1417
|
+
Unit,
|
|
1418
|
+
typed
|
|
1419
|
+
});
|
|
1420
|
+
const deuteronMass = exports.deuteronMass = /* #__PURE__ */(0, _factoriesAny.createDeuteronMass)({
|
|
1364
1421
|
BigNumber,
|
|
1365
1422
|
Unit,
|
|
1366
1423
|
config: _configReadonly.config
|
|
1367
1424
|
});
|
|
1368
|
-
const
|
|
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
|
|
1459
|
+
});
|
|
1460
|
+
const electronMass = exports.electronMass = /* #__PURE__ */(0, _factoriesAny.createElectronMass)({
|
|
1369
1461
|
BigNumber,
|
|
1370
1462
|
Unit,
|
|
1371
1463
|
config: _configReadonly.config
|
|
1372
1464
|
});
|
|
1373
|
-
const
|
|
1465
|
+
const factorial = exports.factorial = /* #__PURE__ */(0, _factoriesAny.createFactorial)({
|
|
1466
|
+
gamma,
|
|
1467
|
+
typed
|
|
1468
|
+
});
|
|
1469
|
+
const fermiCoupling = exports.fermiCoupling = /* #__PURE__ */(0, _factoriesAny.createFermiCoupling)({
|
|
1374
1470
|
BigNumber,
|
|
1375
1471
|
Unit,
|
|
1376
1472
|
config: _configReadonly.config
|
|
1377
1473
|
});
|
|
1378
|
-
const
|
|
1474
|
+
const gasConstant = exports.gasConstant = /* #__PURE__ */(0, _factoriesAny.createGasConstant)({
|
|
1379
1475
|
BigNumber,
|
|
1380
1476
|
Unit,
|
|
1381
1477
|
config: _configReadonly.config
|
|
1382
1478
|
});
|
|
1383
|
-
const
|
|
1479
|
+
const gravity = exports.gravity = /* #__PURE__ */(0, _factoriesAny.createGravity)({
|
|
1384
1480
|
BigNumber,
|
|
1385
1481
|
Unit,
|
|
1386
1482
|
config: _configReadonly.config
|
|
1387
1483
|
});
|
|
1388
|
-
const
|
|
1484
|
+
const klitzing = exports.klitzing = /* #__PURE__ */(0, _factoriesAny.createKlitzing)({
|
|
1389
1485
|
BigNumber,
|
|
1390
1486
|
Unit,
|
|
1391
1487
|
config: _configReadonly.config
|
|
1392
1488
|
});
|
|
1393
|
-
const
|
|
1489
|
+
const loschmidt = exports.loschmidt = /* #__PURE__ */(0, _factoriesAny.createLoschmidt)({
|
|
1394
1490
|
BigNumber,
|
|
1395
1491
|
Unit,
|
|
1396
1492
|
config: _configReadonly.config
|
|
1397
1493
|
});
|
|
1398
|
-
const
|
|
1399
|
-
|
|
1494
|
+
const mad = exports.mad = /* #__PURE__ */(0, _factoriesAny.createMad)({
|
|
1495
|
+
abs,
|
|
1496
|
+
map,
|
|
1497
|
+
median,
|
|
1498
|
+
subtract,
|
|
1400
1499
|
typed
|
|
1401
1500
|
});
|
|
1402
|
-
const
|
|
1501
|
+
const magneticFluxQuantum = exports.magneticFluxQuantum = /* #__PURE__ */(0, _factoriesAny.createMagneticFluxQuantum)({
|
|
1403
1502
|
BigNumber,
|
|
1404
1503
|
Unit,
|
|
1405
1504
|
config: _configReadonly.config
|
|
1406
1505
|
});
|
|
1407
|
-
const
|
|
1506
|
+
const molarMass = exports.molarMass = /* #__PURE__ */(0, _factoriesAny.createMolarMass)({
|
|
1408
1507
|
BigNumber,
|
|
1409
1508
|
Unit,
|
|
1410
1509
|
config: _configReadonly.config
|
|
1411
1510
|
});
|
|
1412
|
-
const
|
|
1511
|
+
const molarPlanckConstant = exports.molarPlanckConstant = /* #__PURE__ */(0, _factoriesAny.createMolarPlanckConstant)({
|
|
1413
1512
|
BigNumber,
|
|
1414
1513
|
Unit,
|
|
1415
1514
|
config: _configReadonly.config
|
|
1416
1515
|
});
|
|
1417
|
-
const
|
|
1516
|
+
const multinomial = exports.multinomial = /* #__PURE__ */(0, _factoriesAny.createMultinomial)({
|
|
1517
|
+
add,
|
|
1518
|
+
divide,
|
|
1519
|
+
factorial,
|
|
1520
|
+
isInteger,
|
|
1521
|
+
isPositive,
|
|
1522
|
+
multiply,
|
|
1523
|
+
typed
|
|
1524
|
+
});
|
|
1525
|
+
const norm = exports.norm = /* #__PURE__ */(0, _factoriesAny.createNorm)({
|
|
1526
|
+
abs,
|
|
1527
|
+
add,
|
|
1528
|
+
conj,
|
|
1529
|
+
ctranspose,
|
|
1530
|
+
eigs,
|
|
1531
|
+
equalScalar,
|
|
1532
|
+
larger,
|
|
1533
|
+
matrix,
|
|
1534
|
+
multiply,
|
|
1535
|
+
pow,
|
|
1536
|
+
smaller,
|
|
1537
|
+
sqrt,
|
|
1538
|
+
typed
|
|
1539
|
+
});
|
|
1540
|
+
const permutations = exports.permutations = /* #__PURE__ */(0, _factoriesAny.createPermutations)({
|
|
1541
|
+
factorial,
|
|
1542
|
+
typed
|
|
1543
|
+
});
|
|
1544
|
+
const planckConstant = exports.planckConstant = /* #__PURE__ */(0, _factoriesAny.createPlanckConstant)({
|
|
1418
1545
|
BigNumber,
|
|
1419
1546
|
Unit,
|
|
1420
1547
|
config: _configReadonly.config
|
|
1421
1548
|
});
|
|
1422
|
-
const
|
|
1549
|
+
const planckMass = exports.planckMass = /* #__PURE__ */(0, _factoriesAny.createPlanckMass)({
|
|
1423
1550
|
BigNumber,
|
|
1424
1551
|
Unit,
|
|
1425
1552
|
config: _configReadonly.config
|
|
1426
1553
|
});
|
|
1427
|
-
const
|
|
1554
|
+
const planckTime = exports.planckTime = /* #__PURE__ */(0, _factoriesAny.createPlanckTime)({
|
|
1428
1555
|
BigNumber,
|
|
1429
1556
|
Unit,
|
|
1430
1557
|
config: _configReadonly.config
|
|
1431
1558
|
});
|
|
1432
|
-
const
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
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,
|
|
1568
|
+
addScalar,
|
|
1569
|
+
config: _configReadonly.config,
|
|
1570
|
+
cos,
|
|
1436
1571
|
matrix,
|
|
1437
|
-
|
|
1572
|
+
multiplyScalar,
|
|
1573
|
+
norm,
|
|
1574
|
+
sin,
|
|
1575
|
+
typed,
|
|
1576
|
+
unaryMinus
|
|
1577
|
+
});
|
|
1578
|
+
const rydberg = exports.rydberg = /* #__PURE__ */(0, _factoriesAny.createRydberg)({
|
|
1579
|
+
BigNumber,
|
|
1580
|
+
Unit,
|
|
1581
|
+
config: _configReadonly.config
|
|
1582
|
+
});
|
|
1583
|
+
const secondRadiation = exports.secondRadiation = /* #__PURE__ */(0, _factoriesAny.createSecondRadiation)({
|
|
1584
|
+
BigNumber,
|
|
1585
|
+
Unit,
|
|
1586
|
+
config: _configReadonly.config
|
|
1587
|
+
});
|
|
1588
|
+
const setSize = exports.setSize = /* #__PURE__ */(0, _factoriesAny.createSetSize)({
|
|
1589
|
+
compareNatural,
|
|
1438
1590
|
typed
|
|
1439
1591
|
});
|
|
1440
|
-
const
|
|
1592
|
+
const speedOfLight = exports.speedOfLight = /* #__PURE__ */(0, _factoriesAny.createSpeedOfLight)({
|
|
1441
1593
|
BigNumber,
|
|
1442
1594
|
Unit,
|
|
1443
1595
|
config: _configReadonly.config
|
|
1444
1596
|
});
|
|
1445
|
-
const
|
|
1597
|
+
const stefanBoltzmann = exports.stefanBoltzmann = /* #__PURE__ */(0, _factoriesAny.createStefanBoltzmann)({
|
|
1598
|
+
BigNumber,
|
|
1599
|
+
Unit,
|
|
1600
|
+
config: _configReadonly.config
|
|
1601
|
+
});
|
|
1602
|
+
const thomsonCrossSection = exports.thomsonCrossSection = /* #__PURE__ */(0, _factoriesAny.createThomsonCrossSection)({
|
|
1603
|
+
BigNumber,
|
|
1604
|
+
Unit,
|
|
1605
|
+
config: _configReadonly.config
|
|
1606
|
+
});
|
|
1607
|
+
const variance = exports.variance = /* #__PURE__ */(0, _factoriesAny.createVariance)({
|
|
1608
|
+
add,
|
|
1609
|
+
divide,
|
|
1610
|
+
isNaN,
|
|
1611
|
+
mapSlices,
|
|
1612
|
+
multiply,
|
|
1613
|
+
subtract,
|
|
1614
|
+
typed
|
|
1615
|
+
});
|
|
1616
|
+
const zeta = exports.zeta = /* #__PURE__ */(0, _factoriesAny.createZeta)({
|
|
1617
|
+
BigNumber,
|
|
1618
|
+
Complex,
|
|
1619
|
+
add,
|
|
1620
|
+
config: _configReadonly.config,
|
|
1621
|
+
divide,
|
|
1622
|
+
equal,
|
|
1623
|
+
factorial,
|
|
1446
1624
|
gamma,
|
|
1625
|
+
isBounded,
|
|
1626
|
+
isNegative,
|
|
1627
|
+
multiply,
|
|
1628
|
+
pi,
|
|
1629
|
+
pow,
|
|
1630
|
+
sin,
|
|
1631
|
+
smallerEq,
|
|
1632
|
+
subtract,
|
|
1447
1633
|
typed
|
|
1448
1634
|
});
|
|
1449
|
-
const
|
|
1635
|
+
const avogadro = exports.avogadro = /* #__PURE__ */(0, _factoriesAny.createAvogadro)({
|
|
1450
1636
|
BigNumber,
|
|
1451
1637
|
Unit,
|
|
1452
1638
|
config: _configReadonly.config
|
|
1453
1639
|
});
|
|
1454
|
-
const
|
|
1640
|
+
const bohrRadius = exports.bohrRadius = /* #__PURE__ */(0, _factoriesAny.createBohrRadius)({
|
|
1455
1641
|
BigNumber,
|
|
1456
1642
|
Unit,
|
|
1457
1643
|
config: _configReadonly.config
|
|
1458
1644
|
});
|
|
1459
|
-
const
|
|
1460
|
-
abs,
|
|
1645
|
+
const corr = exports.corr = /* #__PURE__ */(0, _factoriesAny.createCorr)({
|
|
1461
1646
|
add,
|
|
1462
|
-
|
|
1463
|
-
config: _configReadonly.config,
|
|
1464
|
-
divideScalar,
|
|
1465
|
-
equalScalar,
|
|
1466
|
-
flatten,
|
|
1467
|
-
isNumeric,
|
|
1468
|
-
isZero,
|
|
1647
|
+
divide,
|
|
1469
1648
|
matrix,
|
|
1649
|
+
mean,
|
|
1470
1650
|
multiply,
|
|
1471
|
-
|
|
1472
|
-
|
|
1651
|
+
pow,
|
|
1652
|
+
sqrt,
|
|
1473
1653
|
subtract,
|
|
1654
|
+
sum,
|
|
1474
1655
|
typed
|
|
1475
1656
|
});
|
|
1476
|
-
const
|
|
1657
|
+
const dotPow = exports.dotPow = /* #__PURE__ */(0, _factoriesAny.createDotPow)({
|
|
1477
1658
|
DenseMatrix,
|
|
1478
|
-
Spa,
|
|
1479
1659
|
SparseMatrix,
|
|
1480
|
-
|
|
1481
|
-
addScalar,
|
|
1482
|
-
divideScalar,
|
|
1660
|
+
concat,
|
|
1483
1661
|
equalScalar,
|
|
1484
|
-
larger,
|
|
1485
1662
|
matrix,
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
typed,
|
|
1489
|
-
unaryMinus
|
|
1663
|
+
pow,
|
|
1664
|
+
typed
|
|
1490
1665
|
});
|
|
1491
|
-
const
|
|
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)({
|
|
1492
1702
|
BigNumber,
|
|
1493
1703
|
Unit,
|
|
1494
1704
|
config: _configReadonly.config
|
|
1495
1705
|
});
|
|
1496
|
-
const
|
|
1706
|
+
const planckTemperature = exports.planckTemperature = /* #__PURE__ */(0, _factoriesAny.createPlanckTemperature)({
|
|
1497
1707
|
BigNumber,
|
|
1498
1708
|
Unit,
|
|
1499
1709
|
config: _configReadonly.config
|
|
1500
1710
|
});
|
|
1501
|
-
const
|
|
1502
|
-
add,
|
|
1503
|
-
divide,
|
|
1504
|
-
factorial,
|
|
1505
|
-
isInteger,
|
|
1506
|
-
isPositive,
|
|
1507
|
-
multiply,
|
|
1508
|
-
typed
|
|
1509
|
-
});
|
|
1510
|
-
const permutations = exports.permutations = /* #__PURE__ */(0, _factoriesAny.createPermutations)({
|
|
1511
|
-
factorial,
|
|
1512
|
-
typed
|
|
1513
|
-
});
|
|
1514
|
-
const planckMass = exports.planckMass = /* #__PURE__ */(0, _factoriesAny.createPlanckMass)({
|
|
1711
|
+
const quantumOfCirculation = exports.quantumOfCirculation = /* #__PURE__ */(0, _factoriesAny.createQuantumOfCirculation)({
|
|
1515
1712
|
BigNumber,
|
|
1516
1713
|
Unit,
|
|
1517
1714
|
config: _configReadonly.config
|
|
1518
1715
|
});
|
|
1519
|
-
const polynomialRoot = exports.polynomialRoot = /* #__PURE__ */(0, _factoriesAny.createPolynomialRoot)({
|
|
1520
|
-
add,
|
|
1521
|
-
cbrt,
|
|
1522
|
-
divide,
|
|
1523
|
-
equalScalar,
|
|
1524
|
-
im,
|
|
1525
|
-
isZero,
|
|
1526
|
-
multiply,
|
|
1527
|
-
re,
|
|
1528
|
-
sqrt,
|
|
1529
|
-
subtract,
|
|
1530
|
-
typeOf,
|
|
1531
|
-
typed,
|
|
1532
|
-
unaryMinus
|
|
1533
|
-
});
|
|
1534
1716
|
const setIntersect = exports.setIntersect = /* #__PURE__ */(0, _factoriesAny.createSetIntersect)({
|
|
1535
1717
|
DenseMatrix,
|
|
1536
1718
|
Index,
|
|
@@ -1539,22 +1721,11 @@ const setIntersect = exports.setIntersect = /* #__PURE__ */(0, _factoriesAny.cre
|
|
|
1539
1721
|
subset,
|
|
1540
1722
|
typed
|
|
1541
1723
|
});
|
|
1542
|
-
const
|
|
1543
|
-
abs,
|
|
1544
|
-
add,
|
|
1545
|
-
bignumber,
|
|
1546
|
-
divide,
|
|
1547
|
-
isNegative,
|
|
1548
|
-
isPositive,
|
|
1549
|
-
larger,
|
|
1724
|
+
const std = exports.std = /* #__PURE__ */(0, _factoriesAny.createStd)({
|
|
1550
1725
|
map,
|
|
1551
|
-
|
|
1552
|
-
max,
|
|
1553
|
-
multiply,
|
|
1554
|
-
smaller,
|
|
1555
|
-
subtract,
|
|
1726
|
+
sqrt,
|
|
1556
1727
|
typed,
|
|
1557
|
-
|
|
1728
|
+
variance
|
|
1558
1729
|
});
|
|
1559
1730
|
const stirlingS2 = exports.stirlingS2 = /* #__PURE__ */(0, _factoriesAny.createStirlingS2)({
|
|
1560
1731
|
bignumber,
|
|
@@ -1582,104 +1753,29 @@ const bellNumbers = exports.bellNumbers = /* #__PURE__ */(0, _factoriesAny.creat
|
|
|
1582
1753
|
stirlingS2,
|
|
1583
1754
|
typed
|
|
1584
1755
|
});
|
|
1585
|
-
const
|
|
1586
|
-
add,
|
|
1587
|
-
typed,
|
|
1588
|
-
unaryPlus
|
|
1589
|
-
});
|
|
1590
|
-
const eigs = exports.eigs = /* #__PURE__ */(0, _factoriesAny.createEigs)({
|
|
1591
|
-
abs,
|
|
1592
|
-
add,
|
|
1593
|
-
addScalar,
|
|
1594
|
-
atan,
|
|
1595
|
-
bignumber,
|
|
1596
|
-
column,
|
|
1597
|
-
complex,
|
|
1598
|
-
config: _configReadonly.config,
|
|
1599
|
-
cos,
|
|
1600
|
-
diag,
|
|
1601
|
-
divideScalar,
|
|
1602
|
-
dot,
|
|
1603
|
-
equal,
|
|
1604
|
-
flatten,
|
|
1605
|
-
im,
|
|
1606
|
-
inv,
|
|
1607
|
-
larger,
|
|
1608
|
-
matrix,
|
|
1609
|
-
matrixFromColumns,
|
|
1610
|
-
multiply,
|
|
1611
|
-
multiplyScalar,
|
|
1612
|
-
number,
|
|
1613
|
-
qr,
|
|
1614
|
-
re,
|
|
1615
|
-
reshape,
|
|
1616
|
-
sin,
|
|
1617
|
-
size,
|
|
1618
|
-
smaller,
|
|
1619
|
-
sqrt,
|
|
1620
|
-
subtract,
|
|
1621
|
-
typed,
|
|
1622
|
-
usolve,
|
|
1623
|
-
usolveAll
|
|
1624
|
-
});
|
|
1625
|
-
const fermiCoupling = exports.fermiCoupling = /* #__PURE__ */(0, _factoriesAny.createFermiCoupling)({
|
|
1756
|
+
const electricConstant = exports.electricConstant = /* #__PURE__ */(0, _factoriesAny.createElectricConstant)({
|
|
1626
1757
|
BigNumber,
|
|
1627
1758
|
Unit,
|
|
1628
1759
|
config: _configReadonly.config
|
|
1629
1760
|
});
|
|
1630
|
-
const
|
|
1761
|
+
const firstRadiation = exports.firstRadiation = /* #__PURE__ */(0, _factoriesAny.createFirstRadiation)({
|
|
1631
1762
|
BigNumber,
|
|
1632
1763
|
Unit,
|
|
1633
1764
|
config: _configReadonly.config
|
|
1634
1765
|
});
|
|
1635
|
-
const
|
|
1636
|
-
divide,
|
|
1637
|
-
dotDivide,
|
|
1638
|
-
isNumeric,
|
|
1639
|
-
log,
|
|
1640
|
-
map,
|
|
1641
|
-
matrix,
|
|
1642
|
-
multiply,
|
|
1643
|
-
sum,
|
|
1644
|
-
typed
|
|
1645
|
-
});
|
|
1646
|
-
const lusolve = exports.lusolve = /* #__PURE__ */(0, _factoriesAny.createLusolve)({
|
|
1647
|
-
DenseMatrix,
|
|
1648
|
-
lsolve,
|
|
1649
|
-
lup,
|
|
1650
|
-
matrix,
|
|
1651
|
-
slu,
|
|
1652
|
-
typed,
|
|
1653
|
-
usolve
|
|
1654
|
-
});
|
|
1655
|
-
const mean = exports.mean = /* #__PURE__ */(0, _factoriesAny.createMean)({
|
|
1656
|
-
add,
|
|
1657
|
-
divide,
|
|
1658
|
-
typed
|
|
1659
|
-
});
|
|
1660
|
-
const molarVolume = exports.molarVolume = /* #__PURE__ */(0, _factoriesAny.createMolarVolume)({
|
|
1766
|
+
const nuclearMagneton = exports.nuclearMagneton = /* #__PURE__ */(0, _factoriesAny.createNuclearMagneton)({
|
|
1661
1767
|
BigNumber,
|
|
1662
1768
|
Unit,
|
|
1663
1769
|
config: _configReadonly.config
|
|
1664
1770
|
});
|
|
1665
|
-
const
|
|
1771
|
+
const planckLength = exports.planckLength = /* #__PURE__ */(0, _factoriesAny.createPlanckLength)({
|
|
1666
1772
|
BigNumber,
|
|
1667
1773
|
Unit,
|
|
1668
1774
|
config: _configReadonly.config
|
|
1669
1775
|
});
|
|
1670
|
-
const
|
|
1671
|
-
bignumber,
|
|
1672
|
-
add,
|
|
1673
|
-
compare,
|
|
1674
|
-
divide,
|
|
1675
|
-
isInteger,
|
|
1676
|
-
larger,
|
|
1677
|
-
mapSlices,
|
|
1776
|
+
const rotate = exports.rotate = /* #__PURE__ */(0, _factoriesAny.createRotate)({
|
|
1678
1777
|
multiply,
|
|
1679
|
-
|
|
1680
|
-
smaller,
|
|
1681
|
-
smallerEq,
|
|
1682
|
-
subtract,
|
|
1778
|
+
rotationMatrix,
|
|
1683
1779
|
typed
|
|
1684
1780
|
});
|
|
1685
1781
|
const setUnion = exports.setUnion = /* #__PURE__ */(0, _factoriesAny.createSetUnion)({
|
|
@@ -1691,108 +1787,17 @@ const setUnion = exports.setUnion = /* #__PURE__ */(0, _factoriesAny.createSetUn
|
|
|
1691
1787
|
subset,
|
|
1692
1788
|
typed
|
|
1693
1789
|
});
|
|
1694
|
-
const
|
|
1695
|
-
add,
|
|
1696
|
-
divide,
|
|
1697
|
-
isNaN,
|
|
1698
|
-
mapSlices,
|
|
1699
|
-
multiply,
|
|
1700
|
-
subtract,
|
|
1701
|
-
typed
|
|
1702
|
-
});
|
|
1703
|
-
const classicalElectronRadius = exports.classicalElectronRadius = /* #__PURE__ */(0, _factoriesAny.createClassicalElectronRadius)({
|
|
1790
|
+
const wienDisplacement = exports.wienDisplacement = /* #__PURE__ */(0, _factoriesAny.createWienDisplacement)({
|
|
1704
1791
|
BigNumber,
|
|
1705
1792
|
Unit,
|
|
1706
1793
|
config: _configReadonly.config
|
|
1707
1794
|
});
|
|
1708
|
-
const
|
|
1709
|
-
add,
|
|
1710
|
-
compare,
|
|
1711
|
-
divide,
|
|
1712
|
-
partitionSelect,
|
|
1713
|
-
typed
|
|
1714
|
-
});
|
|
1715
|
-
const corr = exports.corr = /* #__PURE__ */(0, _factoriesAny.createCorr)({
|
|
1716
|
-
add,
|
|
1717
|
-
divide,
|
|
1718
|
-
matrix,
|
|
1719
|
-
mean,
|
|
1720
|
-
multiply,
|
|
1721
|
-
pow,
|
|
1722
|
-
sqrt,
|
|
1723
|
-
subtract,
|
|
1724
|
-
sum,
|
|
1725
|
-
typed
|
|
1726
|
-
});
|
|
1727
|
-
const freqz = exports.freqz = /* #__PURE__ */(0, _factoriesAny.createFreqz)({
|
|
1728
|
-
Complex,
|
|
1729
|
-
add,
|
|
1730
|
-
divide,
|
|
1731
|
-
matrix,
|
|
1732
|
-
multiply,
|
|
1733
|
-
typed
|
|
1734
|
-
});
|
|
1735
|
-
const mad = exports.mad = /* #__PURE__ */(0, _factoriesAny.createMad)({
|
|
1736
|
-
abs,
|
|
1737
|
-
map,
|
|
1738
|
-
median,
|
|
1739
|
-
subtract,
|
|
1740
|
-
typed
|
|
1741
|
-
});
|
|
1742
|
-
const std = exports.std = /* #__PURE__ */(0, _factoriesAny.createStd)({
|
|
1743
|
-
map,
|
|
1744
|
-
sqrt,
|
|
1745
|
-
typed,
|
|
1746
|
-
variance
|
|
1747
|
-
});
|
|
1748
|
-
const zeta = exports.zeta = /* #__PURE__ */(0, _factoriesAny.createZeta)({
|
|
1749
|
-
BigNumber,
|
|
1750
|
-
Complex,
|
|
1751
|
-
add,
|
|
1752
|
-
config: _configReadonly.config,
|
|
1753
|
-
divide,
|
|
1754
|
-
equal,
|
|
1755
|
-
factorial,
|
|
1756
|
-
gamma,
|
|
1757
|
-
isNegative,
|
|
1758
|
-
multiply,
|
|
1759
|
-
pi,
|
|
1760
|
-
pow,
|
|
1761
|
-
sin,
|
|
1762
|
-
smallerEq,
|
|
1763
|
-
subtract,
|
|
1764
|
-
typed
|
|
1765
|
-
});
|
|
1766
|
-
const norm = exports.norm = /* #__PURE__ */(0, _factoriesAny.createNorm)({
|
|
1767
|
-
abs,
|
|
1768
|
-
add,
|
|
1769
|
-
conj,
|
|
1770
|
-
ctranspose,
|
|
1771
|
-
eigs,
|
|
1772
|
-
equalScalar,
|
|
1773
|
-
larger,
|
|
1774
|
-
matrix,
|
|
1775
|
-
multiply,
|
|
1776
|
-
pow,
|
|
1777
|
-
smaller,
|
|
1778
|
-
sqrt,
|
|
1779
|
-
typed
|
|
1780
|
-
});
|
|
1781
|
-
const rotationMatrix = exports.rotationMatrix = /* #__PURE__ */(0, _factoriesAny.createRotationMatrix)({
|
|
1795
|
+
const classicalElectronRadius = exports.classicalElectronRadius = /* #__PURE__ */(0, _factoriesAny.createClassicalElectronRadius)({
|
|
1782
1796
|
BigNumber,
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
addScalar,
|
|
1786
|
-
config: _configReadonly.config,
|
|
1787
|
-
cos,
|
|
1788
|
-
matrix,
|
|
1789
|
-
multiplyScalar,
|
|
1790
|
-
norm,
|
|
1791
|
-
sin,
|
|
1792
|
-
typed,
|
|
1793
|
-
unaryMinus
|
|
1797
|
+
Unit,
|
|
1798
|
+
config: _configReadonly.config
|
|
1794
1799
|
});
|
|
1795
|
-
const
|
|
1800
|
+
const molarVolume = exports.molarVolume = /* #__PURE__ */(0, _factoriesAny.createMolarVolume)({
|
|
1796
1801
|
BigNumber,
|
|
1797
1802
|
Unit,
|
|
1798
1803
|
config: _configReadonly.config
|
|
@@ -1806,10 +1811,20 @@ const schur = exports.schur = /* #__PURE__ */(0, _factoriesAny.createSchur)({
|
|
|
1806
1811
|
subtract,
|
|
1807
1812
|
typed
|
|
1808
1813
|
});
|
|
1809
|
-
const
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
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
|
|
1813
1828
|
});
|
|
1814
1829
|
const sylvester = exports.sylvester = /* #__PURE__ */(0, _factoriesAny.createSylvester)({
|
|
1815
1830
|
abs,
|