mathjs 14.3.0 → 14.4.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 +20 -5
- 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/function/import.js +4 -1
- package/lib/cjs/expression/parse.js +1 -1
- package/lib/cjs/function/arithmetic/hypot.js +1 -1
- package/lib/cjs/function/matrix/filter.js +4 -1
- package/lib/cjs/function/matrix/flatten.js +1 -1
- package/lib/cjs/function/matrix/forEach.js +2 -1
- package/lib/cjs/function/matrix/map.js +2 -1
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/type/matrix/DenseMatrix.js +51 -24
- package/lib/cjs/type/matrix/SparseMatrix.js +4 -3
- package/lib/cjs/utils/array.js +31 -7
- package/lib/cjs/utils/collection.js +3 -3
- package/lib/cjs/utils/latex.js +4 -1
- package/lib/cjs/utils/optimizeCallback.js +61 -13
- package/lib/cjs/version.js +1 -1
- package/lib/esm/core/function/import.js +5 -2
- package/lib/esm/expression/parse.js +1 -1
- package/lib/esm/function/arithmetic/hypot.js +1 -1
- package/lib/esm/function/matrix/filter.js +4 -1
- package/lib/esm/function/matrix/flatten.js +1 -1
- package/lib/esm/function/matrix/forEach.js +2 -1
- package/lib/esm/function/matrix/map.js +2 -1
- package/lib/esm/type/matrix/DenseMatrix.js +57 -30
- package/lib/esm/type/matrix/SparseMatrix.js +4 -3
- package/lib/esm/utils/array.js +33 -9
- package/lib/esm/utils/collection.js +3 -3
- package/lib/esm/utils/latex.js +4 -1
- package/lib/esm/utils/optimizeCallback.js +61 -13
- package/lib/esm/version.js +1 -1
- package/package.json +13 -13
package/HISTORY.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
-
#
|
3
|
+
# 2025-03-28, 14.4.0
|
4
|
+
|
5
|
+
- Feat: improve the performance of function `flatten` (#3400). Thanks @dvd101x.
|
6
|
+
- Feat: improve the performance of `map` and `forEach` (#3409).
|
7
|
+
Thanks @dvd101x.
|
8
|
+
- Feat: add LaTeX representation for fractions (#3434, #3419). Thanks @orelbn.
|
9
|
+
- Fix: #3422 allow dot operators after symbol E (#3425).
|
10
|
+
- Fix: issue in the `nthRoots` latex function template string (#3427).
|
11
|
+
Thanks @aitee.
|
12
|
+
- Fix: upgrade to the latest version of `@babel/runtime`.
|
13
|
+
|
14
|
+
# 2025-03-06, 14.3.1
|
15
|
+
|
16
|
+
- Fix: #3350 cannot import a constant that is a complex number.
|
17
|
+
|
18
|
+
# 2025-02-28, 14.3.0
|
4
19
|
|
5
20
|
- Feat: improved performance of function `flatten` (#3354). Thanks @dvd101x.
|
6
21
|
- Feat: improved performance of `DenseMatrix` Symbol.iterator (#3395).
|
@@ -16,11 +31,11 @@
|
|
16
31
|
- Fix: #3387 use utility `math.isNaN` for consistent `max` and `min` results
|
17
32
|
(#3389). Thanks @orelbn.
|
18
33
|
|
19
|
-
#
|
34
|
+
# 2025-02-05, 14.2.1
|
20
35
|
|
21
36
|
- Fix: #3377 remove redundant dependency `@lambdatest/node-tunnel`.
|
22
37
|
|
23
|
-
#
|
38
|
+
# 2025-01-30, 14.2.0
|
24
39
|
|
25
40
|
- Feat: #3041, #3340 rename `apply` to `mapSlices` (#3357). Function
|
26
41
|
`apply` is still available but is now marked deprecated. Thanks @gwhitney.
|
@@ -155,9 +170,9 @@
|
|
155
170
|
Breaking changes:
|
156
171
|
|
157
172
|
- Change `isZero`, `isPositive`, and `isNegative` to respect `config.epsilon`
|
158
|
-
(#3139, #2838).
|
173
|
+
(#3139, #2838). Thanks @dvd101x.
|
159
174
|
- Change the behavior of the internal `nearlyEqual` to align with Python and
|
160
|
-
Julia (#3152, #2838)
|
175
|
+
Julia (#3152, #2838). Thanks @dvd101x.
|
161
176
|
- Upgrade to `fraction.js@4.3.7`,
|
162
177
|
see <https://github.com/rawify/Fraction.js/issues/68>.
|
163
178
|
- Dropped support for JavaScript engines that do not fully support ES6 or
|