mathjs 10.4.0 → 10.4.1
Sign up to get free protection for your applications and to get access to all the features.
- package/HISTORY.md +17 -0
- package/lib/browser/math.js +3 -3
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/entry/pureFunctionsAny.generated.js +2 -2
- package/lib/cjs/entry/pureFunctionsNumber.generated.js +1 -1
- package/lib/cjs/expression/parse.js +12 -8
- package/lib/cjs/factoriesNumber.js +1 -1
- package/lib/cjs/function/matrix/eigs/complexEigs.js +31 -22
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/version.js +1 -1
- package/lib/esm/expression/parse.js +12 -8
- package/lib/esm/function/matrix/eigs/complexEigs.js +28 -19
- package/lib/esm/version.js +1 -1
- package/package.json +14 -10
- package/types/index.d.ts +106 -20
- package/types/index.ts +274 -57
- package/types/tsconfig.json +2 -1
package/HISTORY.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
+
# 2022-03-23, version 10.4.1
|
4
|
+
|
5
|
+
- Improve TypeScript definitions for function `unit` (#2479).
|
6
|
+
Thanks @SinanAkkoyun.
|
7
|
+
- Add tests for type declarations (#2448). Thanks @samestep.
|
8
|
+
- Further improvement to TypeScript definitions of `std` and `variance`
|
9
|
+
(make dimension parameter optional, #2474). Thanks @NattapongSiri.
|
10
|
+
- Next step (as per #2431) for full publication of "is" functions like
|
11
|
+
`isMatrix` etc: Provide TypeScript definitions of "is" functions and
|
12
|
+
make them type guards. (#2432). Thanks @ChristopherChudzicki.
|
13
|
+
- Fix #2491: Multi line object expressions don't work with comments (#2492).
|
14
|
+
Thanks @gwhitney.
|
15
|
+
- Fix #2478: a bug in calculating the eigenvectors when dealing with complex
|
16
|
+
numbers (#2496). Thanks @gwhitney.
|
17
|
+
- Update project dependencies and devDependencies.
|
18
|
+
|
19
|
+
|
3
20
|
# 2022-03-07, version 10.4.0
|
4
21
|
|
5
22
|
- Fix #2461: make sure `simplifyCore` recurses over all binary nodes (#2462).
|