mathjs 15.1.0 → 15.2.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 -0
- package/NOTICE +1 -1
- package/README.md +6 -6
- package/bin/cli.js +1 -1
- package/lib/browser/math.js +1 -1
- package/lib/browser/math.js.LICENSE.txt +3 -3
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/core/function/import.js +7 -0
- package/lib/cjs/core/function/typed.js +1 -1
- package/lib/cjs/entry/dependenciesAny/dependenciesDen.generated.js +19 -0
- package/lib/cjs/entry/dependenciesAny/dependenciesNum.generated.js +19 -0
- package/lib/cjs/entry/dependenciesAny.generated.js +14 -0
- package/lib/cjs/entry/impureFunctionsAny.generated.js +123 -121
- package/lib/cjs/entry/pureFunctionsAny.generated.js +344 -336
- package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +4 -0
- package/lib/cjs/expression/embeddedDocs/function/fraction/den.js +14 -0
- package/lib/cjs/expression/embeddedDocs/function/fraction/num.js +14 -0
- package/lib/cjs/expression/parse.js +26 -2
- package/lib/cjs/factoriesAny.js +15 -1
- package/lib/cjs/function/algebra/polynomialRoot.js +4 -0
- package/lib/cjs/function/arithmetic/add.js +8 -1
- package/lib/cjs/function/arithmetic/cbrt.js +7 -6
- package/lib/cjs/function/arithmetic/ceil.js +10 -2
- package/lib/cjs/function/arithmetic/exp.js +7 -5
- package/lib/cjs/function/arithmetic/expm1.js +6 -5
- package/lib/cjs/function/arithmetic/fix.js +10 -2
- package/lib/cjs/function/arithmetic/floor.js +10 -2
- package/lib/cjs/function/arithmetic/log.js +13 -0
- package/lib/cjs/function/arithmetic/mod.js +8 -2
- package/lib/cjs/function/arithmetic/nthRoot.js +9 -3
- package/lib/cjs/function/arithmetic/nthRoots.js +7 -10
- package/lib/cjs/function/fraction/den.js +60 -0
- package/lib/cjs/function/fraction/num.js +62 -0
- package/lib/cjs/function/matrix/map.js +6 -0
- package/lib/cjs/function/relational/compare.js +6 -0
- package/lib/cjs/function/relational/compareNatural.js +8 -2
- package/lib/cjs/function/relational/deepEqual.js +8 -3
- package/lib/cjs/function/relational/equal.js +15 -2
- package/lib/cjs/function/relational/unequal.js +14 -2
- package/lib/cjs/function/set/setDistinct.js +2 -1
- package/lib/cjs/function/string/format.js +9 -0
- package/lib/cjs/function/utils/isFinite.js +8 -1
- package/lib/cjs/function/utils/numeric.js +6 -0
- package/lib/cjs/header.js +3 -3
- package/lib/cjs/type/bigint.js +5 -0
- package/lib/cjs/type/boolean.js +6 -0
- package/lib/cjs/type/complex/function/complex.js +6 -0
- package/lib/cjs/type/fraction/function/fraction.js +8 -0
- package/lib/cjs/type/matrix/function/index.js +8 -0
- package/lib/cjs/type/matrix/function/matrix.js +6 -0
- package/lib/cjs/type/matrix/function/sparse.js +4 -0
- package/lib/cjs/type/string.js +4 -0
- package/lib/cjs/type/unit/Unit.js +7 -0
- package/lib/cjs/type/unit/function/unit.js +8 -0
- package/lib/cjs/utils/array.js +3 -0
- package/lib/cjs/utils/customs.js +39 -46
- package/lib/cjs/utils/map.js +2 -2
- package/lib/cjs/version.js +1 -1
- package/lib/esm/core/function/import.js +7 -0
- package/lib/esm/core/function/typed.js +1 -1
- package/lib/esm/entry/dependenciesAny/dependenciesDen.generated.js +12 -0
- package/lib/esm/entry/dependenciesAny/dependenciesNum.generated.js +12 -0
- package/lib/esm/entry/dependenciesAny.generated.js +2 -0
- package/lib/esm/entry/impureFunctionsAny.generated.js +125 -123
- package/lib/esm/entry/pureFunctionsAny.generated.js +341 -333
- package/lib/esm/expression/embeddedDocs/embeddedDocs.js +4 -0
- package/lib/esm/expression/embeddedDocs/function/fraction/den.js +8 -0
- package/lib/esm/expression/embeddedDocs/function/fraction/num.js +8 -0
- package/lib/esm/expression/parse.js +26 -2
- package/lib/esm/factoriesAny.js +3 -1
- package/lib/esm/function/algebra/polynomialRoot.js +4 -0
- package/lib/esm/function/arithmetic/add.js +8 -1
- package/lib/esm/function/arithmetic/cbrt.js +7 -6
- package/lib/esm/function/arithmetic/ceil.js +10 -2
- package/lib/esm/function/arithmetic/exp.js +7 -5
- package/lib/esm/function/arithmetic/expm1.js +6 -5
- package/lib/esm/function/arithmetic/fix.js +10 -2
- package/lib/esm/function/arithmetic/floor.js +10 -2
- package/lib/esm/function/arithmetic/log.js +13 -0
- package/lib/esm/function/arithmetic/mod.js +8 -2
- package/lib/esm/function/arithmetic/nthRoot.js +9 -3
- package/lib/esm/function/arithmetic/nthRoots.js +7 -10
- package/lib/esm/function/fraction/den.js +54 -0
- package/lib/esm/function/fraction/num.js +56 -0
- package/lib/esm/function/matrix/map.js +6 -0
- package/lib/esm/function/relational/compare.js +6 -0
- package/lib/esm/function/relational/compareNatural.js +8 -2
- package/lib/esm/function/relational/deepEqual.js +8 -3
- package/lib/esm/function/relational/equal.js +15 -2
- package/lib/esm/function/relational/unequal.js +14 -2
- package/lib/esm/function/set/setDistinct.js +2 -1
- package/lib/esm/function/string/format.js +9 -0
- package/lib/esm/function/utils/isFinite.js +8 -1
- package/lib/esm/function/utils/numeric.js +6 -0
- package/lib/esm/header.js +1 -1
- package/lib/esm/type/bigint.js +5 -0
- package/lib/esm/type/boolean.js +6 -0
- package/lib/esm/type/complex/function/complex.js +6 -0
- package/lib/esm/type/fraction/function/fraction.js +8 -0
- package/lib/esm/type/matrix/function/index.js +8 -0
- package/lib/esm/type/matrix/function/matrix.js +6 -0
- package/lib/esm/type/matrix/function/sparse.js +4 -0
- package/lib/esm/type/string.js +4 -0
- package/lib/esm/type/unit/Unit.js +7 -0
- package/lib/esm/type/unit/function/unit.js +8 -0
- package/lib/esm/utils/array.js +3 -0
- package/lib/esm/utils/customs.js +42 -56
- package/lib/esm/utils/map.js +3 -3
- package/lib/esm/version.js +1 -1
- package/package.json +14 -14
- package/types/index.d.ts +96 -15
|
@@ -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 = exports.weakMixingAngle = exports.version = exports.variance = void 0;
|
|
6
|
+
exports.dotDivide = exports.dot = exports.divideScalar = exports.divide = exports.distance = exports.diff = exports.diag = exports.deuteronMass = exports.det = exports.den = 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.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 = exports.dotMultiply = void 0;
|
|
8
|
+
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.num = exports.nullish = exports.nuclearMagneton = exports.nthRoots = exports.nthRoot = void 0;
|
|
9
|
+
exports.zpk2tf = exports.zeta = exports.zeros = exports.xor = exports.xgcd = exports.wienDisplacement = exports.weakMixingAngle = exports.version = exports.variance = exports.vacuumImpedance = exports.usolveAll = void 0;
|
|
10
10
|
var _configReadonly = require("./configReadonly.js");
|
|
11
11
|
var _factoriesAny = require("../factoriesAny.js");
|
|
12
12
|
/**
|
|
@@ -514,15 +514,8 @@ const matrixFromColumns = exports.matrixFromColumns = /* #__PURE__ */(0, _factor
|
|
|
514
514
|
size,
|
|
515
515
|
typed
|
|
516
516
|
});
|
|
517
|
-
const
|
|
518
|
-
bignumber,
|
|
517
|
+
const num = exports.num = /* #__PURE__ */(0, _factoriesAny.createNum)({
|
|
519
518
|
fraction,
|
|
520
|
-
number
|
|
521
|
-
});
|
|
522
|
-
const prod = exports.prod = /* #__PURE__ */(0, _factoriesAny.createProd)({
|
|
523
|
-
config: _configReadonly.config,
|
|
524
|
-
multiplyScalar,
|
|
525
|
-
numeric,
|
|
526
519
|
typed
|
|
527
520
|
});
|
|
528
521
|
const reshape = exports.reshape = /* #__PURE__ */(0, _factoriesAny.createReshape)({
|
|
@@ -565,19 +558,10 @@ const concat = exports.concat = /* #__PURE__ */(0, _factoriesAny.createConcat)({
|
|
|
565
558
|
matrix,
|
|
566
559
|
typed
|
|
567
560
|
});
|
|
568
|
-
const count = exports.count = /* #__PURE__ */(0, _factoriesAny.createCount)({
|
|
569
|
-
prod,
|
|
570
|
-
size,
|
|
571
|
-
typed
|
|
572
|
-
});
|
|
573
561
|
const deepEqual = exports.deepEqual = /* #__PURE__ */(0, _factoriesAny.createDeepEqual)({
|
|
574
562
|
equal,
|
|
575
563
|
typed
|
|
576
564
|
});
|
|
577
|
-
const divideScalar = exports.divideScalar = /* #__PURE__ */(0, _factoriesAny.createDivideScalar)({
|
|
578
|
-
numeric,
|
|
579
|
-
typed
|
|
580
|
-
});
|
|
581
565
|
const dotMultiply = exports.dotMultiply = /* #__PURE__ */(0, _factoriesAny.createDotMultiply)({
|
|
582
566
|
concat,
|
|
583
567
|
equalScalar,
|
|
@@ -632,22 +616,6 @@ const leftShift = exports.leftShift = /* #__PURE__ */(0, _factoriesAny.createLef
|
|
|
632
616
|
typed,
|
|
633
617
|
zeros
|
|
634
618
|
});
|
|
635
|
-
const lsolve = exports.lsolve = /* #__PURE__ */(0, _factoriesAny.createLsolve)({
|
|
636
|
-
DenseMatrix,
|
|
637
|
-
divideScalar,
|
|
638
|
-
equalScalar,
|
|
639
|
-
matrix,
|
|
640
|
-
multiplyScalar,
|
|
641
|
-
subtractScalar,
|
|
642
|
-
typed
|
|
643
|
-
});
|
|
644
|
-
const max = exports.max = /* #__PURE__ */(0, _factoriesAny.createMax)({
|
|
645
|
-
config: _configReadonly.config,
|
|
646
|
-
isNaN,
|
|
647
|
-
larger,
|
|
648
|
-
numeric,
|
|
649
|
-
typed
|
|
650
|
-
});
|
|
651
619
|
const mod = exports.mod = /* #__PURE__ */(0, _factoriesAny.createMod)({
|
|
652
620
|
DenseMatrix,
|
|
653
621
|
concat,
|
|
@@ -672,29 +640,16 @@ const nullish = exports.nullish = /* #__PURE__ */(0, _factoriesAny.createNullish
|
|
|
672
640
|
size,
|
|
673
641
|
typed
|
|
674
642
|
});
|
|
675
|
-
const
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
matrix,
|
|
680
|
-
typed
|
|
643
|
+
const numeric = exports.numeric = /* #__PURE__ */(0, _factoriesAny.createNumeric)({
|
|
644
|
+
bignumber,
|
|
645
|
+
fraction,
|
|
646
|
+
number
|
|
681
647
|
});
|
|
682
|
-
const
|
|
683
|
-
|
|
684
|
-
complex,
|
|
685
|
-
conj,
|
|
686
|
-
divideScalar,
|
|
687
|
-
equal,
|
|
688
|
-
identity,
|
|
689
|
-
isZero,
|
|
690
|
-
matrix,
|
|
648
|
+
const prod = exports.prod = /* #__PURE__ */(0, _factoriesAny.createProd)({
|
|
649
|
+
config: _configReadonly.config,
|
|
691
650
|
multiplyScalar,
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
subtractScalar,
|
|
695
|
-
typed,
|
|
696
|
-
unaryMinus,
|
|
697
|
-
zeros
|
|
651
|
+
numeric,
|
|
652
|
+
typed
|
|
698
653
|
});
|
|
699
654
|
const rightArithShift = exports.rightArithShift = /* #__PURE__ */(0, _factoriesAny.createRightArithShift)({
|
|
700
655
|
DenseMatrix,
|
|
@@ -732,15 +687,6 @@ const unaryPlus = exports.unaryPlus = /* #__PURE__ */(0, _factoriesAny.createUna
|
|
|
732
687
|
numeric,
|
|
733
688
|
typed
|
|
734
689
|
});
|
|
735
|
-
const usolve = exports.usolve = /* #__PURE__ */(0, _factoriesAny.createUsolve)({
|
|
736
|
-
DenseMatrix,
|
|
737
|
-
divideScalar,
|
|
738
|
-
equalScalar,
|
|
739
|
-
matrix,
|
|
740
|
-
multiplyScalar,
|
|
741
|
-
subtractScalar,
|
|
742
|
-
typed
|
|
743
|
-
});
|
|
744
690
|
const xor = exports.xor = /* #__PURE__ */(0, _factoriesAny.createXor)({
|
|
745
691
|
DenseMatrix,
|
|
746
692
|
SparseMatrix,
|
|
@@ -785,14 +731,14 @@ const bitXor = exports.bitXor = /* #__PURE__ */(0, _factoriesAny.createBitXor)({
|
|
|
785
731
|
matrix,
|
|
786
732
|
typed
|
|
787
733
|
});
|
|
788
|
-
const
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
734
|
+
const ceil = exports.ceil = /* #__PURE__ */(0, _factoriesAny.createCeil)({
|
|
735
|
+
DenseMatrix,
|
|
736
|
+
config: _configReadonly.config,
|
|
737
|
+
equalScalar,
|
|
738
|
+
matrix,
|
|
739
|
+
round,
|
|
740
|
+
typed,
|
|
741
|
+
zeros
|
|
796
742
|
});
|
|
797
743
|
const compare = exports.compare = /* #__PURE__ */(0, _factoriesAny.createCompare)({
|
|
798
744
|
BigNumber,
|
|
@@ -818,44 +764,25 @@ const composition = exports.composition = /* #__PURE__ */(0, _factoriesAny.creat
|
|
|
818
764
|
larger,
|
|
819
765
|
typed
|
|
820
766
|
});
|
|
767
|
+
const count = exports.count = /* #__PURE__ */(0, _factoriesAny.createCount)({
|
|
768
|
+
prod,
|
|
769
|
+
size,
|
|
770
|
+
typed
|
|
771
|
+
});
|
|
821
772
|
const cross = exports.cross = /* #__PURE__ */(0, _factoriesAny.createCross)({
|
|
822
773
|
matrix,
|
|
823
774
|
multiply,
|
|
824
775
|
subtract,
|
|
825
776
|
typed
|
|
826
777
|
});
|
|
827
|
-
const det = exports.det = /* #__PURE__ */(0, _factoriesAny.createDet)({
|
|
828
|
-
divideScalar,
|
|
829
|
-
isZero,
|
|
830
|
-
matrix,
|
|
831
|
-
multiply,
|
|
832
|
-
subtractScalar,
|
|
833
|
-
typed,
|
|
834
|
-
unaryMinus
|
|
835
|
-
});
|
|
836
778
|
const diff = exports.diff = /* #__PURE__ */(0, _factoriesAny.createDiff)({
|
|
837
779
|
matrix,
|
|
838
780
|
number,
|
|
839
781
|
subtract,
|
|
840
782
|
typed
|
|
841
783
|
});
|
|
842
|
-
const
|
|
843
|
-
|
|
844
|
-
addScalar,
|
|
845
|
-
deepEqual,
|
|
846
|
-
divideScalar,
|
|
847
|
-
multiplyScalar,
|
|
848
|
-
sqrt,
|
|
849
|
-
subtractScalar,
|
|
850
|
-
typed
|
|
851
|
-
});
|
|
852
|
-
const dotDivide = exports.dotDivide = /* #__PURE__ */(0, _factoriesAny.createDotDivide)({
|
|
853
|
-
DenseMatrix,
|
|
854
|
-
SparseMatrix,
|
|
855
|
-
concat,
|
|
856
|
-
divideScalar,
|
|
857
|
-
equalScalar,
|
|
858
|
-
matrix,
|
|
784
|
+
const divideScalar = exports.divideScalar = /* #__PURE__ */(0, _factoriesAny.createDivideScalar)({
|
|
785
|
+
numeric,
|
|
859
786
|
typed
|
|
860
787
|
});
|
|
861
788
|
const equalText = exports.equalText = /* #__PURE__ */(0, _factoriesAny.createEqualText)({
|
|
@@ -867,6 +794,16 @@ const FibonacciHeap = exports.FibonacciHeap = /* #__PURE__ */(0, _factoriesAny.c
|
|
|
867
794
|
larger,
|
|
868
795
|
smaller
|
|
869
796
|
});
|
|
797
|
+
const fix = exports.fix = /* #__PURE__ */(0, _factoriesAny.createFix)({
|
|
798
|
+
Complex,
|
|
799
|
+
DenseMatrix,
|
|
800
|
+
ceil,
|
|
801
|
+
equalScalar,
|
|
802
|
+
floor,
|
|
803
|
+
matrix,
|
|
804
|
+
typed,
|
|
805
|
+
zeros
|
|
806
|
+
});
|
|
870
807
|
const hypot = exports.hypot = /* #__PURE__ */(0, _factoriesAny.createHypot)({
|
|
871
808
|
abs,
|
|
872
809
|
addScalar,
|
|
@@ -928,7 +865,7 @@ const log = exports.log = /* #__PURE__ */(0, _factoriesAny.createLog)({
|
|
|
928
865
|
typeOf,
|
|
929
866
|
typed
|
|
930
867
|
});
|
|
931
|
-
const
|
|
868
|
+
const lsolve = exports.lsolve = /* #__PURE__ */(0, _factoriesAny.createLsolve)({
|
|
932
869
|
DenseMatrix,
|
|
933
870
|
divideScalar,
|
|
934
871
|
equalScalar,
|
|
@@ -962,6 +899,23 @@ const partitionSelect = exports.partitionSelect = /* #__PURE__ */(0, _factoriesA
|
|
|
962
899
|
isNumeric,
|
|
963
900
|
typed
|
|
964
901
|
});
|
|
902
|
+
const qr = exports.qr = /* #__PURE__ */(0, _factoriesAny.createQr)({
|
|
903
|
+
addScalar,
|
|
904
|
+
complex,
|
|
905
|
+
conj,
|
|
906
|
+
divideScalar,
|
|
907
|
+
equal,
|
|
908
|
+
identity,
|
|
909
|
+
isZero,
|
|
910
|
+
matrix,
|
|
911
|
+
multiplyScalar,
|
|
912
|
+
sign,
|
|
913
|
+
sqrt,
|
|
914
|
+
subtractScalar,
|
|
915
|
+
typed,
|
|
916
|
+
unaryMinus,
|
|
917
|
+
zeros
|
|
918
|
+
});
|
|
965
919
|
const rightLogShift = exports.rightLogShift = /* #__PURE__ */(0, _factoriesAny.createRightLogShift)({
|
|
966
920
|
DenseMatrix,
|
|
967
921
|
concat,
|
|
@@ -1004,7 +958,7 @@ const trace = exports.trace = /* #__PURE__ */(0, _factoriesAny.createTrace)({
|
|
|
1004
958
|
matrix,
|
|
1005
959
|
typed
|
|
1006
960
|
});
|
|
1007
|
-
const
|
|
961
|
+
const usolve = exports.usolve = /* #__PURE__ */(0, _factoriesAny.createUsolve)({
|
|
1008
962
|
DenseMatrix,
|
|
1009
963
|
divideScalar,
|
|
1010
964
|
equalScalar,
|
|
@@ -1020,14 +974,14 @@ const zpk2tf = exports.zpk2tf = /* #__PURE__ */(0, _factoriesAny.createZpk2tf)({
|
|
|
1020
974
|
number,
|
|
1021
975
|
typed
|
|
1022
976
|
});
|
|
1023
|
-
const
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
977
|
+
const catalan = exports.catalan = /* #__PURE__ */(0, _factoriesAny.createCatalan)({
|
|
978
|
+
addScalar,
|
|
979
|
+
combinations,
|
|
980
|
+
divideScalar,
|
|
981
|
+
isInteger,
|
|
982
|
+
isNegative,
|
|
983
|
+
multiplyScalar,
|
|
984
|
+
typed
|
|
1031
985
|
});
|
|
1032
986
|
const compareNatural = exports.compareNatural = /* #__PURE__ */(0, _factoriesAny.createCompareNatural)({
|
|
1033
987
|
compare,
|
|
@@ -1038,15 +992,23 @@ const cumsum = exports.cumsum = /* #__PURE__ */(0, _factoriesAny.createCumSum)({
|
|
|
1038
992
|
typed,
|
|
1039
993
|
unaryPlus
|
|
1040
994
|
});
|
|
1041
|
-
const
|
|
1042
|
-
|
|
995
|
+
const det = exports.det = /* #__PURE__ */(0, _factoriesAny.createDet)({
|
|
996
|
+
divideScalar,
|
|
997
|
+
isZero,
|
|
998
|
+
matrix,
|
|
999
|
+
multiply,
|
|
1000
|
+
subtractScalar,
|
|
1001
|
+
typed,
|
|
1002
|
+
unaryMinus
|
|
1003
|
+
});
|
|
1004
|
+
const dotDivide = exports.dotDivide = /* #__PURE__ */(0, _factoriesAny.createDotDivide)({
|
|
1043
1005
|
DenseMatrix,
|
|
1044
|
-
|
|
1006
|
+
SparseMatrix,
|
|
1007
|
+
concat,
|
|
1008
|
+
divideScalar,
|
|
1045
1009
|
equalScalar,
|
|
1046
|
-
floor,
|
|
1047
1010
|
matrix,
|
|
1048
|
-
typed
|
|
1049
|
-
zeros
|
|
1011
|
+
typed
|
|
1050
1012
|
});
|
|
1051
1013
|
const index = exports.index = /* #__PURE__ */(0, _factoriesAny.createIndex)({
|
|
1052
1014
|
Index,
|
|
@@ -1070,20 +1032,28 @@ const log1p = exports.log1p = /* #__PURE__ */(0, _factoriesAny.createLog1p)({
|
|
|
1070
1032
|
log,
|
|
1071
1033
|
typed
|
|
1072
1034
|
});
|
|
1073
|
-
const
|
|
1035
|
+
const lsolveAll = exports.lsolveAll = /* #__PURE__ */(0, _factoriesAny.createLsolveAll)({
|
|
1074
1036
|
DenseMatrix,
|
|
1075
|
-
Spa,
|
|
1076
|
-
SparseMatrix,
|
|
1077
|
-
abs,
|
|
1078
|
-
addScalar,
|
|
1079
1037
|
divideScalar,
|
|
1080
1038
|
equalScalar,
|
|
1081
|
-
larger,
|
|
1082
1039
|
matrix,
|
|
1083
1040
|
multiplyScalar,
|
|
1084
1041
|
subtractScalar,
|
|
1085
|
-
typed
|
|
1086
|
-
|
|
1042
|
+
typed
|
|
1043
|
+
});
|
|
1044
|
+
const max = exports.max = /* #__PURE__ */(0, _factoriesAny.createMax)({
|
|
1045
|
+
config: _configReadonly.config,
|
|
1046
|
+
isNaN,
|
|
1047
|
+
larger,
|
|
1048
|
+
numeric,
|
|
1049
|
+
typed
|
|
1050
|
+
});
|
|
1051
|
+
const or = exports.or = /* #__PURE__ */(0, _factoriesAny.createOr)({
|
|
1052
|
+
DenseMatrix,
|
|
1053
|
+
concat,
|
|
1054
|
+
equalScalar,
|
|
1055
|
+
matrix,
|
|
1056
|
+
typed
|
|
1087
1057
|
});
|
|
1088
1058
|
const pinv = exports.pinv = /* #__PURE__ */(0, _factoriesAny.createPinv)({
|
|
1089
1059
|
Complex,
|
|
@@ -1176,6 +1146,15 @@ const unequal = exports.unequal = /* #__PURE__ */(0, _factoriesAny.createUnequal
|
|
|
1176
1146
|
matrix,
|
|
1177
1147
|
typed
|
|
1178
1148
|
});
|
|
1149
|
+
const usolveAll = exports.usolveAll = /* #__PURE__ */(0, _factoriesAny.createUsolveAll)({
|
|
1150
|
+
DenseMatrix,
|
|
1151
|
+
divideScalar,
|
|
1152
|
+
equalScalar,
|
|
1153
|
+
matrix,
|
|
1154
|
+
multiplyScalar,
|
|
1155
|
+
subtractScalar,
|
|
1156
|
+
typed
|
|
1157
|
+
});
|
|
1179
1158
|
const and = exports.and = /* #__PURE__ */(0, _factoriesAny.createAnd)({
|
|
1180
1159
|
concat,
|
|
1181
1160
|
equalScalar,
|
|
@@ -1184,12 +1163,27 @@ const and = exports.and = /* #__PURE__ */(0, _factoriesAny.createAnd)({
|
|
|
1184
1163
|
typed,
|
|
1185
1164
|
zeros
|
|
1186
1165
|
});
|
|
1187
|
-
const
|
|
1166
|
+
const den = exports.den = /* #__PURE__ */(0, _factoriesAny.createDen)({
|
|
1167
|
+
fraction,
|
|
1168
|
+
typed
|
|
1169
|
+
});
|
|
1170
|
+
const distance = exports.distance = /* #__PURE__ */(0, _factoriesAny.createDistance)({
|
|
1171
|
+
abs,
|
|
1172
|
+
addScalar,
|
|
1173
|
+
deepEqual,
|
|
1188
1174
|
divideScalar,
|
|
1175
|
+
multiplyScalar,
|
|
1176
|
+
sqrt,
|
|
1177
|
+
subtractScalar,
|
|
1178
|
+
typed
|
|
1179
|
+
});
|
|
1180
|
+
const dotPow = exports.dotPow = /* #__PURE__ */(0, _factoriesAny.createDotPow)({
|
|
1181
|
+
DenseMatrix,
|
|
1182
|
+
SparseMatrix,
|
|
1183
|
+
concat,
|
|
1189
1184
|
equalScalar,
|
|
1190
|
-
inv,
|
|
1191
1185
|
matrix,
|
|
1192
|
-
|
|
1186
|
+
pow,
|
|
1193
1187
|
typed
|
|
1194
1188
|
});
|
|
1195
1189
|
const expm = exports.expm = /* #__PURE__ */(0, _factoriesAny.createExpm)({
|
|
@@ -1215,14 +1209,6 @@ const fft = exports.fft = /* #__PURE__ */(0, _factoriesAny.createFft)({
|
|
|
1215
1209
|
tau,
|
|
1216
1210
|
typed
|
|
1217
1211
|
});
|
|
1218
|
-
const freqz = exports.freqz = /* #__PURE__ */(0, _factoriesAny.createFreqz)({
|
|
1219
|
-
Complex,
|
|
1220
|
-
add,
|
|
1221
|
-
divide,
|
|
1222
|
-
matrix,
|
|
1223
|
-
multiply,
|
|
1224
|
-
typed
|
|
1225
|
-
});
|
|
1226
1212
|
const gamma = exports.gamma = /* #__PURE__ */(0, _factoriesAny.createGamma)({
|
|
1227
1213
|
BigNumber,
|
|
1228
1214
|
Complex,
|
|
@@ -1237,68 +1223,21 @@ const ifft = exports.ifft = /* #__PURE__ */(0, _factoriesAny.createIfft)({
|
|
|
1237
1223
|
fft,
|
|
1238
1224
|
typed
|
|
1239
1225
|
});
|
|
1240
|
-
const
|
|
1241
|
-
divide,
|
|
1242
|
-
dotDivide,
|
|
1243
|
-
isNumeric,
|
|
1244
|
-
log,
|
|
1245
|
-
map,
|
|
1246
|
-
matrix,
|
|
1247
|
-
multiply,
|
|
1248
|
-
sum,
|
|
1249
|
-
typed
|
|
1250
|
-
});
|
|
1251
|
-
const lusolve = exports.lusolve = /* #__PURE__ */(0, _factoriesAny.createLusolve)({
|
|
1226
|
+
const lup = exports.lup = /* #__PURE__ */(0, _factoriesAny.createLup)({
|
|
1252
1227
|
DenseMatrix,
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
usolve
|
|
1259
|
-
});
|
|
1260
|
-
const mean = exports.mean = /* #__PURE__ */(0, _factoriesAny.createMean)({
|
|
1261
|
-
add,
|
|
1262
|
-
divide,
|
|
1263
|
-
typed
|
|
1264
|
-
});
|
|
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,
|
|
1228
|
+
Spa,
|
|
1229
|
+
SparseMatrix,
|
|
1230
|
+
abs,
|
|
1231
|
+
addScalar,
|
|
1232
|
+
divideScalar,
|
|
1276
1233
|
equalScalar,
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
sqrt,
|
|
1282
|
-
subtract,
|
|
1283
|
-
typeOf,
|
|
1234
|
+
larger,
|
|
1235
|
+
matrix,
|
|
1236
|
+
multiplyScalar,
|
|
1237
|
+
subtractScalar,
|
|
1284
1238
|
typed,
|
|
1285
1239
|
unaryMinus
|
|
1286
1240
|
});
|
|
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
1241
|
const range = exports.range = /* #__PURE__ */(0, _factoriesAny.createRange)({
|
|
1303
1242
|
bignumber,
|
|
1304
1243
|
matrix,
|
|
@@ -1342,23 +1281,6 @@ const setSymDifference = exports.setSymDifference = /* #__PURE__ */(0, _factorie
|
|
|
1342
1281
|
subset,
|
|
1343
1282
|
typed
|
|
1344
1283
|
});
|
|
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
1284
|
const Unit = exports.Unit = /* #__PURE__ */(0, _factoriesAny.createUnitClass)({
|
|
1363
1285
|
BigNumber,
|
|
1364
1286
|
Complex,
|
|
@@ -1382,6 +1304,11 @@ const vacuumImpedance = exports.vacuumImpedance = /* #__PURE__ */(0, _factoriesA
|
|
|
1382
1304
|
Unit,
|
|
1383
1305
|
config: _configReadonly.config
|
|
1384
1306
|
});
|
|
1307
|
+
const wienDisplacement = exports.wienDisplacement = /* #__PURE__ */(0, _factoriesAny.createWienDisplacement)({
|
|
1308
|
+
BigNumber,
|
|
1309
|
+
Unit,
|
|
1310
|
+
config: _configReadonly.config
|
|
1311
|
+
});
|
|
1385
1312
|
const atomicMass = exports.atomicMass = /* #__PURE__ */(0, _factoriesAny.createAtomicMass)({
|
|
1386
1313
|
BigNumber,
|
|
1387
1314
|
Unit,
|
|
@@ -1491,14 +1418,7 @@ const loschmidt = exports.loschmidt = /* #__PURE__ */(0, _factoriesAny.createLos
|
|
|
1491
1418
|
Unit,
|
|
1492
1419
|
config: _configReadonly.config
|
|
1493
1420
|
});
|
|
1494
|
-
const
|
|
1495
|
-
abs,
|
|
1496
|
-
map,
|
|
1497
|
-
median,
|
|
1498
|
-
subtract,
|
|
1499
|
-
typed
|
|
1500
|
-
});
|
|
1501
|
-
const magneticFluxQuantum = exports.magneticFluxQuantum = /* #__PURE__ */(0, _factoriesAny.createMagneticFluxQuantum)({
|
|
1421
|
+
const magneticConstant = exports.magneticConstant = /* #__PURE__ */(0, _factoriesAny.createMagneticConstant)({
|
|
1502
1422
|
BigNumber,
|
|
1503
1423
|
Unit,
|
|
1504
1424
|
config: _configReadonly.config
|
|
@@ -1513,29 +1433,15 @@ const molarPlanckConstant = exports.molarPlanckConstant = /* #__PURE__ */(0, _fa
|
|
|
1513
1433
|
Unit,
|
|
1514
1434
|
config: _configReadonly.config
|
|
1515
1435
|
});
|
|
1516
|
-
const
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
isInteger,
|
|
1521
|
-
isPositive,
|
|
1522
|
-
multiply,
|
|
1523
|
-
typed
|
|
1436
|
+
const neutronMass = exports.neutronMass = /* #__PURE__ */(0, _factoriesAny.createNeutronMass)({
|
|
1437
|
+
BigNumber,
|
|
1438
|
+
Unit,
|
|
1439
|
+
config: _configReadonly.config
|
|
1524
1440
|
});
|
|
1525
|
-
const
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
ctranspose,
|
|
1530
|
-
eigs,
|
|
1531
|
-
equalScalar,
|
|
1532
|
-
larger,
|
|
1533
|
-
matrix,
|
|
1534
|
-
multiply,
|
|
1535
|
-
pow,
|
|
1536
|
-
smaller,
|
|
1537
|
-
sqrt,
|
|
1538
|
-
typed
|
|
1441
|
+
const nuclearMagneton = exports.nuclearMagneton = /* #__PURE__ */(0, _factoriesAny.createNuclearMagneton)({
|
|
1442
|
+
BigNumber,
|
|
1443
|
+
Unit,
|
|
1444
|
+
config: _configReadonly.config
|
|
1539
1445
|
});
|
|
1540
1446
|
const permutations = exports.permutations = /* #__PURE__ */(0, _factoriesAny.createPermutations)({
|
|
1541
1447
|
factorial,
|
|
@@ -1556,26 +1462,17 @@ const planckTime = exports.planckTime = /* #__PURE__ */(0, _factoriesAny.createP
|
|
|
1556
1462
|
Unit,
|
|
1557
1463
|
config: _configReadonly.config
|
|
1558
1464
|
});
|
|
1559
|
-
const
|
|
1465
|
+
const protonMass = exports.protonMass = /* #__PURE__ */(0, _factoriesAny.createProtonMass)({
|
|
1560
1466
|
BigNumber,
|
|
1561
1467
|
Unit,
|
|
1562
1468
|
config: _configReadonly.config
|
|
1563
1469
|
});
|
|
1564
|
-
const
|
|
1470
|
+
const quantumOfCirculation = exports.quantumOfCirculation = /* #__PURE__ */(0, _factoriesAny.createQuantumOfCirculation)({
|
|
1565
1471
|
BigNumber,
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
addScalar,
|
|
1569
|
-
config: _configReadonly.config,
|
|
1570
|
-
cos,
|
|
1571
|
-
matrix,
|
|
1572
|
-
multiplyScalar,
|
|
1573
|
-
norm,
|
|
1574
|
-
sin,
|
|
1575
|
-
typed,
|
|
1576
|
-
unaryMinus
|
|
1472
|
+
Unit,
|
|
1473
|
+
config: _configReadonly.config
|
|
1577
1474
|
});
|
|
1578
|
-
const
|
|
1475
|
+
const reducedPlanckConstant = exports.reducedPlanckConstant = /* #__PURE__ */(0, _factoriesAny.createReducedPlanckConstant)({
|
|
1579
1476
|
BigNumber,
|
|
1580
1477
|
Unit,
|
|
1581
1478
|
config: _configReadonly.config
|
|
@@ -1604,34 +1501,6 @@ const thomsonCrossSection = exports.thomsonCrossSection = /* #__PURE__ */(0, _fa
|
|
|
1604
1501
|
Unit,
|
|
1605
1502
|
config: _configReadonly.config
|
|
1606
1503
|
});
|
|
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,
|
|
1624
|
-
gamma,
|
|
1625
|
-
isBounded,
|
|
1626
|
-
isNegative,
|
|
1627
|
-
multiply,
|
|
1628
|
-
pi,
|
|
1629
|
-
pow,
|
|
1630
|
-
sin,
|
|
1631
|
-
smallerEq,
|
|
1632
|
-
subtract,
|
|
1633
|
-
typed
|
|
1634
|
-
});
|
|
1635
1504
|
const avogadro = exports.avogadro = /* #__PURE__ */(0, _factoriesAny.createAvogadro)({
|
|
1636
1505
|
BigNumber,
|
|
1637
1506
|
Unit,
|
|
@@ -1642,25 +1511,17 @@ const bohrRadius = exports.bohrRadius = /* #__PURE__ */(0, _factoriesAny.createB
|
|
|
1642
1511
|
Unit,
|
|
1643
1512
|
config: _configReadonly.config
|
|
1644
1513
|
});
|
|
1645
|
-
const
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
mean,
|
|
1650
|
-
multiply,
|
|
1651
|
-
pow,
|
|
1652
|
-
sqrt,
|
|
1653
|
-
subtract,
|
|
1654
|
-
sum,
|
|
1655
|
-
typed
|
|
1514
|
+
const coulombConstant = exports.coulombConstant = /* #__PURE__ */(0, _factoriesAny.createCoulombConstant)({
|
|
1515
|
+
BigNumber,
|
|
1516
|
+
Unit,
|
|
1517
|
+
config: _configReadonly.config
|
|
1656
1518
|
});
|
|
1657
|
-
const
|
|
1658
|
-
|
|
1659
|
-
SparseMatrix,
|
|
1660
|
-
concat,
|
|
1519
|
+
const divide = exports.divide = /* #__PURE__ */(0, _factoriesAny.createDivide)({
|
|
1520
|
+
divideScalar,
|
|
1661
1521
|
equalScalar,
|
|
1522
|
+
inv,
|
|
1662
1523
|
matrix,
|
|
1663
|
-
|
|
1524
|
+
multiply,
|
|
1664
1525
|
typed
|
|
1665
1526
|
});
|
|
1666
1527
|
const elementaryCharge = exports.elementaryCharge = /* #__PURE__ */(0, _factoriesAny.createElementaryCharge)({
|
|
@@ -1673,7 +1534,15 @@ const faraday = exports.faraday = /* #__PURE__ */(0, _factoriesAny.createFaraday
|
|
|
1673
1534
|
Unit,
|
|
1674
1535
|
config: _configReadonly.config
|
|
1675
1536
|
});
|
|
1676
|
-
const
|
|
1537
|
+
const freqz = exports.freqz = /* #__PURE__ */(0, _factoriesAny.createFreqz)({
|
|
1538
|
+
Complex,
|
|
1539
|
+
add,
|
|
1540
|
+
divide,
|
|
1541
|
+
matrix,
|
|
1542
|
+
multiply,
|
|
1543
|
+
typed
|
|
1544
|
+
});
|
|
1545
|
+
const gravitationConstant = exports.gravitationConstant = /* #__PURE__ */(0, _factoriesAny.createGravitationConstant)({
|
|
1677
1546
|
BigNumber,
|
|
1678
1547
|
Unit,
|
|
1679
1548
|
config: _configReadonly.config
|
|
@@ -1683,7 +1552,16 @@ const inverseConductanceQuantum = exports.inverseConductanceQuantum = /* #__PURE
|
|
|
1683
1552
|
Unit,
|
|
1684
1553
|
config: _configReadonly.config
|
|
1685
1554
|
});
|
|
1686
|
-
const
|
|
1555
|
+
const lusolve = exports.lusolve = /* #__PURE__ */(0, _factoriesAny.createLusolve)({
|
|
1556
|
+
DenseMatrix,
|
|
1557
|
+
lsolve,
|
|
1558
|
+
lup,
|
|
1559
|
+
matrix,
|
|
1560
|
+
slu,
|
|
1561
|
+
typed,
|
|
1562
|
+
usolve
|
|
1563
|
+
});
|
|
1564
|
+
const magneticFluxQuantum = exports.magneticFluxQuantum = /* #__PURE__ */(0, _factoriesAny.createMagneticFluxQuantum)({
|
|
1687
1565
|
BigNumber,
|
|
1688
1566
|
Unit,
|
|
1689
1567
|
config: _configReadonly.config
|
|
@@ -1693,10 +1571,14 @@ const molarMassC12 = exports.molarMassC12 = /* #__PURE__ */(0, _factoriesAny.cre
|
|
|
1693
1571
|
Unit,
|
|
1694
1572
|
config: _configReadonly.config
|
|
1695
1573
|
});
|
|
1696
|
-
const
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1574
|
+
const multinomial = exports.multinomial = /* #__PURE__ */(0, _factoriesAny.createMultinomial)({
|
|
1575
|
+
add,
|
|
1576
|
+
divide,
|
|
1577
|
+
factorial,
|
|
1578
|
+
isInteger,
|
|
1579
|
+
isPositive,
|
|
1580
|
+
multiply,
|
|
1581
|
+
typed
|
|
1700
1582
|
});
|
|
1701
1583
|
const planckCharge = exports.planckCharge = /* #__PURE__ */(0, _factoriesAny.createPlanckCharge)({
|
|
1702
1584
|
BigNumber,
|
|
@@ -1708,7 +1590,22 @@ const planckTemperature = exports.planckTemperature = /* #__PURE__ */(0, _factor
|
|
|
1708
1590
|
Unit,
|
|
1709
1591
|
config: _configReadonly.config
|
|
1710
1592
|
});
|
|
1711
|
-
const
|
|
1593
|
+
const quantileSeq = exports.quantileSeq = /* #__PURE__ */(0, _factoriesAny.createQuantileSeq)({
|
|
1594
|
+
bignumber,
|
|
1595
|
+
add,
|
|
1596
|
+
compare,
|
|
1597
|
+
divide,
|
|
1598
|
+
isInteger,
|
|
1599
|
+
larger,
|
|
1600
|
+
mapSlices,
|
|
1601
|
+
multiply,
|
|
1602
|
+
partitionSelect,
|
|
1603
|
+
smaller,
|
|
1604
|
+
smallerEq,
|
|
1605
|
+
subtract,
|
|
1606
|
+
typed
|
|
1607
|
+
});
|
|
1608
|
+
const rydberg = exports.rydberg = /* #__PURE__ */(0, _factoriesAny.createRydberg)({
|
|
1712
1609
|
BigNumber,
|
|
1713
1610
|
Unit,
|
|
1714
1611
|
config: _configReadonly.config
|
|
@@ -1721,11 +1618,22 @@ const setIntersect = exports.setIntersect = /* #__PURE__ */(0, _factoriesAny.cre
|
|
|
1721
1618
|
subset,
|
|
1722
1619
|
typed
|
|
1723
1620
|
});
|
|
1724
|
-
const
|
|
1621
|
+
const solveODE = exports.solveODE = /* #__PURE__ */(0, _factoriesAny.createSolveODE)({
|
|
1622
|
+
abs,
|
|
1623
|
+
add,
|
|
1624
|
+
bignumber,
|
|
1625
|
+
divide,
|
|
1626
|
+
isNegative,
|
|
1627
|
+
isPositive,
|
|
1628
|
+
larger,
|
|
1725
1629
|
map,
|
|
1726
|
-
|
|
1630
|
+
matrix,
|
|
1631
|
+
max,
|
|
1632
|
+
multiply,
|
|
1633
|
+
smaller,
|
|
1634
|
+
subtract,
|
|
1727
1635
|
typed,
|
|
1728
|
-
|
|
1636
|
+
unaryMinus
|
|
1729
1637
|
});
|
|
1730
1638
|
const stirlingS2 = exports.stirlingS2 = /* #__PURE__ */(0, _factoriesAny.createStirlingS2)({
|
|
1731
1639
|
bignumber,
|
|
@@ -1763,20 +1671,36 @@ const firstRadiation = exports.firstRadiation = /* #__PURE__ */(0, _factoriesAny
|
|
|
1763
1671
|
Unit,
|
|
1764
1672
|
config: _configReadonly.config
|
|
1765
1673
|
});
|
|
1766
|
-
const
|
|
1674
|
+
const hartreeEnergy = exports.hartreeEnergy = /* #__PURE__ */(0, _factoriesAny.createHartreeEnergy)({
|
|
1767
1675
|
BigNumber,
|
|
1768
1676
|
Unit,
|
|
1769
1677
|
config: _configReadonly.config
|
|
1770
1678
|
});
|
|
1771
|
-
const
|
|
1679
|
+
const kldivergence = exports.kldivergence = /* #__PURE__ */(0, _factoriesAny.createKldivergence)({
|
|
1680
|
+
divide,
|
|
1681
|
+
dotDivide,
|
|
1682
|
+
isNumeric,
|
|
1683
|
+
log,
|
|
1684
|
+
map,
|
|
1685
|
+
matrix,
|
|
1686
|
+
multiply,
|
|
1687
|
+
sum,
|
|
1688
|
+
typed
|
|
1689
|
+
});
|
|
1690
|
+
const mean = exports.mean = /* #__PURE__ */(0, _factoriesAny.createMean)({
|
|
1691
|
+
add,
|
|
1692
|
+
divide,
|
|
1693
|
+
typed
|
|
1694
|
+
});
|
|
1695
|
+
const molarVolume = exports.molarVolume = /* #__PURE__ */(0, _factoriesAny.createMolarVolume)({
|
|
1772
1696
|
BigNumber,
|
|
1773
1697
|
Unit,
|
|
1774
1698
|
config: _configReadonly.config
|
|
1775
1699
|
});
|
|
1776
|
-
const
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1700
|
+
const planckLength = exports.planckLength = /* #__PURE__ */(0, _factoriesAny.createPlanckLength)({
|
|
1701
|
+
BigNumber,
|
|
1702
|
+
Unit,
|
|
1703
|
+
config: _configReadonly.config
|
|
1780
1704
|
});
|
|
1781
1705
|
const setUnion = exports.setUnion = /* #__PURE__ */(0, _factoriesAny.createSetUnion)({
|
|
1782
1706
|
Index,
|
|
@@ -1787,20 +1711,119 @@ const setUnion = exports.setUnion = /* #__PURE__ */(0, _factoriesAny.createSetUn
|
|
|
1787
1711
|
subset,
|
|
1788
1712
|
typed
|
|
1789
1713
|
});
|
|
1790
|
-
const
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1714
|
+
const variance = exports.variance = /* #__PURE__ */(0, _factoriesAny.createVariance)({
|
|
1715
|
+
add,
|
|
1716
|
+
divide,
|
|
1717
|
+
isNaN,
|
|
1718
|
+
mapSlices,
|
|
1719
|
+
multiply,
|
|
1720
|
+
subtract,
|
|
1721
|
+
typed
|
|
1794
1722
|
});
|
|
1795
1723
|
const classicalElectronRadius = exports.classicalElectronRadius = /* #__PURE__ */(0, _factoriesAny.createClassicalElectronRadius)({
|
|
1796
1724
|
BigNumber,
|
|
1797
1725
|
Unit,
|
|
1798
1726
|
config: _configReadonly.config
|
|
1799
1727
|
});
|
|
1800
|
-
const
|
|
1728
|
+
const corr = exports.corr = /* #__PURE__ */(0, _factoriesAny.createCorr)({
|
|
1729
|
+
add,
|
|
1730
|
+
divide,
|
|
1731
|
+
matrix,
|
|
1732
|
+
mean,
|
|
1733
|
+
multiply,
|
|
1734
|
+
pow,
|
|
1735
|
+
sqrt,
|
|
1736
|
+
subtract,
|
|
1737
|
+
sum,
|
|
1738
|
+
typed
|
|
1739
|
+
});
|
|
1740
|
+
const median = exports.median = /* #__PURE__ */(0, _factoriesAny.createMedian)({
|
|
1741
|
+
add,
|
|
1742
|
+
compare,
|
|
1743
|
+
divide,
|
|
1744
|
+
partitionSelect,
|
|
1745
|
+
typed
|
|
1746
|
+
});
|
|
1747
|
+
const polynomialRoot = exports.polynomialRoot = /* #__PURE__ */(0, _factoriesAny.createPolynomialRoot)({
|
|
1748
|
+
add,
|
|
1749
|
+
cbrt,
|
|
1750
|
+
divide,
|
|
1751
|
+
equalScalar,
|
|
1752
|
+
im,
|
|
1753
|
+
isZero,
|
|
1754
|
+
multiply,
|
|
1755
|
+
re,
|
|
1756
|
+
sqrt,
|
|
1757
|
+
subtract,
|
|
1758
|
+
typeOf,
|
|
1759
|
+
typed,
|
|
1760
|
+
unaryMinus
|
|
1761
|
+
});
|
|
1762
|
+
const std = exports.std = /* #__PURE__ */(0, _factoriesAny.createStd)({
|
|
1763
|
+
map,
|
|
1764
|
+
sqrt,
|
|
1765
|
+
typed,
|
|
1766
|
+
variance
|
|
1767
|
+
});
|
|
1768
|
+
const zeta = exports.zeta = /* #__PURE__ */(0, _factoriesAny.createZeta)({
|
|
1801
1769
|
BigNumber,
|
|
1802
|
-
|
|
1803
|
-
|
|
1770
|
+
Complex,
|
|
1771
|
+
add,
|
|
1772
|
+
config: _configReadonly.config,
|
|
1773
|
+
divide,
|
|
1774
|
+
equal,
|
|
1775
|
+
factorial,
|
|
1776
|
+
gamma,
|
|
1777
|
+
isBounded,
|
|
1778
|
+
isNegative,
|
|
1779
|
+
multiply,
|
|
1780
|
+
pi,
|
|
1781
|
+
pow,
|
|
1782
|
+
sin,
|
|
1783
|
+
smallerEq,
|
|
1784
|
+
subtract,
|
|
1785
|
+
typed
|
|
1786
|
+
});
|
|
1787
|
+
const mad = exports.mad = /* #__PURE__ */(0, _factoriesAny.createMad)({
|
|
1788
|
+
abs,
|
|
1789
|
+
map,
|
|
1790
|
+
median,
|
|
1791
|
+
subtract,
|
|
1792
|
+
typed
|
|
1793
|
+
});
|
|
1794
|
+
const norm = exports.norm = /* #__PURE__ */(0, _factoriesAny.createNorm)({
|
|
1795
|
+
abs,
|
|
1796
|
+
add,
|
|
1797
|
+
conj,
|
|
1798
|
+
ctranspose,
|
|
1799
|
+
eigs,
|
|
1800
|
+
equalScalar,
|
|
1801
|
+
larger,
|
|
1802
|
+
matrix,
|
|
1803
|
+
multiply,
|
|
1804
|
+
pow,
|
|
1805
|
+
smaller,
|
|
1806
|
+
sqrt,
|
|
1807
|
+
typed
|
|
1808
|
+
});
|
|
1809
|
+
const rotationMatrix = exports.rotationMatrix = /* #__PURE__ */(0, _factoriesAny.createRotationMatrix)({
|
|
1810
|
+
BigNumber,
|
|
1811
|
+
DenseMatrix,
|
|
1812
|
+
SparseMatrix,
|
|
1813
|
+
addScalar,
|
|
1814
|
+
config: _configReadonly.config,
|
|
1815
|
+
cos,
|
|
1816
|
+
matrix,
|
|
1817
|
+
multiplyScalar,
|
|
1818
|
+
norm,
|
|
1819
|
+
sin,
|
|
1820
|
+
typed,
|
|
1821
|
+
unaryMinus
|
|
1822
|
+
});
|
|
1823
|
+
const rotate = exports.rotate = /* #__PURE__ */(0, _factoriesAny.createRotate)({
|
|
1824
|
+
multiply,
|
|
1825
|
+
rotationMatrix,
|
|
1826
|
+
typed
|
|
1804
1827
|
});
|
|
1805
1828
|
const schur = exports.schur = /* #__PURE__ */(0, _factoriesAny.createSchur)({
|
|
1806
1829
|
identity,
|
|
@@ -1811,21 +1834,6 @@ const schur = exports.schur = /* #__PURE__ */(0, _factoriesAny.createSchur)({
|
|
|
1811
1834
|
subtract,
|
|
1812
1835
|
typed
|
|
1813
1836
|
});
|
|
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
|
|
1828
|
-
});
|
|
1829
1837
|
const sylvester = exports.sylvester = /* #__PURE__ */(0, _factoriesAny.createSylvester)({
|
|
1830
1838
|
abs,
|
|
1831
1839
|
add,
|