mathjs 14.3.1 → 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 +17 -6
- 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/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/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,10 +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
|
4
15
|
|
5
16
|
- Fix: #3350 cannot import a constant that is a complex number.
|
6
17
|
|
7
|
-
#
|
18
|
+
# 2025-02-28, 14.3.0
|
8
19
|
|
9
20
|
- Feat: improved performance of function `flatten` (#3354). Thanks @dvd101x.
|
10
21
|
- Feat: improved performance of `DenseMatrix` Symbol.iterator (#3395).
|
@@ -20,11 +31,11 @@
|
|
20
31
|
- Fix: #3387 use utility `math.isNaN` for consistent `max` and `min` results
|
21
32
|
(#3389). Thanks @orelbn.
|
22
33
|
|
23
|
-
#
|
34
|
+
# 2025-02-05, 14.2.1
|
24
35
|
|
25
36
|
- Fix: #3377 remove redundant dependency `@lambdatest/node-tunnel`.
|
26
37
|
|
27
|
-
#
|
38
|
+
# 2025-01-30, 14.2.0
|
28
39
|
|
29
40
|
- Feat: #3041, #3340 rename `apply` to `mapSlices` (#3357). Function
|
30
41
|
`apply` is still available but is now marked deprecated. Thanks @gwhitney.
|
@@ -159,9 +170,9 @@
|
|
159
170
|
Breaking changes:
|
160
171
|
|
161
172
|
- Change `isZero`, `isPositive`, and `isNegative` to respect `config.epsilon`
|
162
|
-
(#3139, #2838).
|
173
|
+
(#3139, #2838). Thanks @dvd101x.
|
163
174
|
- Change the behavior of the internal `nearlyEqual` to align with Python and
|
164
|
-
Julia (#3152, #2838)
|
175
|
+
Julia (#3152, #2838). Thanks @dvd101x.
|
165
176
|
- Upgrade to `fraction.js@4.3.7`,
|
166
177
|
see <https://github.com/rawify/Fraction.js/issues/68>.
|
167
178
|
- Dropped support for JavaScript engines that do not fully support ES6 or
|