mathjs 14.9.1 → 15.0.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 +19 -0
- package/lib/browser/math.js +1 -1
- package/lib/browser/math.js.LICENSE.txt +1 -1
- 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/dependenciesSize.generated.js +0 -2
- package/lib/cjs/entry/dependenciesNumber/dependenciesSize.generated.js +0 -2
- package/lib/cjs/entry/impureFunctionsAny.generated.js +40 -40
- package/lib/cjs/entry/pureFunctionsAny.generated.js +143 -144
- package/lib/cjs/entry/pureFunctionsNumber.generated.js +0 -2
- package/lib/cjs/expression/node/IndexNode.js +1 -1
- package/lib/cjs/expression/parse.js +38 -34
- package/lib/cjs/function/algebra/sylvester.js +6 -5
- 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/header.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 +13 -7
- 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/dependenciesSize.generated.js +0 -2
- package/lib/esm/entry/dependenciesNumber/dependenciesSize.generated.js +0 -2
- package/lib/esm/entry/impureFunctionsAny.generated.js +42 -42
- package/lib/esm/entry/pureFunctionsAny.generated.js +144 -145
- package/lib/esm/entry/pureFunctionsNumber.generated.js +0 -2
- package/lib/esm/expression/node/IndexNode.js +1 -1
- package/lib/esm/expression/parse.js +38 -34
- package/lib/esm/function/algebra/sylvester.js +6 -5
- 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/type/matrix/DenseMatrix.js +52 -41
- package/lib/esm/type/matrix/MatrixIndex.js +20 -21
- package/lib/esm/type/matrix/SparseMatrix.js +13 -7
- package/lib/esm/version.js +1 -1
- package/package.json +1 -1
package/HISTORY.md
CHANGED
@@ -1,5 +1,24 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
+
# 2205-10-10, 15.0.0
|
4
|
+
|
5
|
+
!!! BE CAREFUL: BREAKING CHANGES !!!
|
6
|
+
|
7
|
+
- Feat: #3349 Decouple precedence of unary percentage operator and binary
|
8
|
+
modulus operator (that both use symbol `%`), and raise the former (#3432).
|
9
|
+
Thanks @kiprobinsonknack.
|
10
|
+
- Feat: #1753 enhance Kronecker product to handle arbitrary dimension (#3461).
|
11
|
+
Thanks @gwhitney.
|
12
|
+
- Feat: #2344 matrix subset according to the type of input (#3485).
|
13
|
+
Thanks @dvd101x.
|
14
|
+
- Fix: #1753 Correct dimensionality of Kronecker product on vectors (and
|
15
|
+
extend to arbitrary dimension) (#3455). Thanks @Delaney.
|
16
|
+
- Fix: #3501 parse `%` as unary only when not followed by a term (#3505).
|
17
|
+
Thanks @gwhitney.
|
18
|
+
- Fix: #3421 require a space or delimiter after hex, bin, and oct values (#3463).
|
19
|
+
- Fix: #3529 Change function `size` to always return an `Array` (3535).
|
20
|
+
- Fix: #3530 throw an error when trying to flatten a `SparseMatrix` (#3536).
|
21
|
+
|
3
22
|
# 2025-10-10, 14.9.1
|
4
23
|
|
5
24
|
- Fix: issue in HISTORY.md listing all fixes of `v14.8.2` under `v14.9.0`.
|