mathjs 12.3.2 → 12.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. package/HISTORY.md +15 -0
  2. package/lib/browser/math.js +1 -1
  3. package/lib/browser/math.js.LICENSE.txt +2 -2
  4. package/lib/browser/math.js.map +1 -1
  5. package/lib/cjs/entry/pureFunctionsAny.generated.js +1 -0
  6. package/lib/cjs/expression/parse.js +8 -4
  7. package/lib/cjs/function/arithmetic/multiply.js +30 -29
  8. package/lib/cjs/function/arithmetic/round.js +38 -7
  9. package/lib/cjs/function/matrix/dot.js +3 -3
  10. package/lib/cjs/header.js +2 -2
  11. package/lib/cjs/type/matrix/utils/matAlgo01xDSid.js +4 -4
  12. package/lib/cjs/type/matrix/utils/matAlgo02xDS0.js +4 -4
  13. package/lib/cjs/type/matrix/utils/matAlgo03xDSf.js +4 -4
  14. package/lib/cjs/type/matrix/utils/matAlgo04xSidSid.js +4 -4
  15. package/lib/cjs/type/matrix/utils/matAlgo05xSfSf.js +4 -4
  16. package/lib/cjs/type/matrix/utils/matAlgo06xS0S0.js +4 -4
  17. package/lib/cjs/type/matrix/utils/matAlgo07xSSf.js +4 -4
  18. package/lib/cjs/type/matrix/utils/matAlgo08xS0Sid.js +4 -4
  19. package/lib/cjs/type/matrix/utils/matAlgo09xS0Sf.js +4 -4
  20. package/lib/cjs/utils/map.js +2 -0
  21. package/lib/cjs/version.js +1 -1
  22. package/lib/esm/entry/pureFunctionsAny.generated.js +1 -0
  23. package/lib/esm/expression/parse.js +8 -4
  24. package/lib/esm/function/arithmetic/multiply.js +30 -29
  25. package/lib/esm/function/arithmetic/round.js +38 -7
  26. package/lib/esm/function/matrix/dot.js +3 -3
  27. package/lib/esm/type/matrix/utils/matAlgo01xDSid.js +4 -4
  28. package/lib/esm/type/matrix/utils/matAlgo02xDS0.js +4 -4
  29. package/lib/esm/type/matrix/utils/matAlgo03xDSf.js +4 -4
  30. package/lib/esm/type/matrix/utils/matAlgo04xSidSid.js +4 -4
  31. package/lib/esm/type/matrix/utils/matAlgo05xSfSf.js +4 -4
  32. package/lib/esm/type/matrix/utils/matAlgo06xS0S0.js +4 -4
  33. package/lib/esm/type/matrix/utils/matAlgo07xSSf.js +4 -4
  34. package/lib/esm/type/matrix/utils/matAlgo08xS0Sid.js +4 -4
  35. package/lib/esm/type/matrix/utils/matAlgo09xS0Sf.js +4 -4
  36. package/lib/esm/utils/map.js +2 -0
  37. package/lib/esm/version.js +1 -1
  38. package/package.json +7 -7
  39. package/types/index.d.ts +5 -5
package/HISTORY.md CHANGED
@@ -1,6 +1,21 @@
1
1
  # History
2
2
 
3
3
 
4
+ # 2024-02-22, 12.4.0
5
+
6
+ - Feat: implement support for trailing commas in matrices (#3154, #2968).
7
+ Thanks @dvd101x.
8
+ - Feat: improve the performance of `multiply` a lot by adding matrix type
9
+ inferencing (#3149). Thanks @RandomGamingDev.
10
+ - Fix: #3100 function `round` not handling round-off errors (#3136).
11
+ Thanks @BrianFugate.
12
+ - Fix: `PartitionedMap` and `ObjectWrappingMap` missing a property
13
+ `Symbol.iterator`, causing problems when trying `new Map(scope)` (#3156).
14
+ - Fix: type definitions of function `mode` (#3153). Thanks @rich-martinez.
15
+ - Docs: describe method `getAllAsMap` in the Parser docs (#3158, #3157).
16
+ Thanks @dvd101x.
17
+
18
+
4
19
  # 2024-02-08, 12.3.2
5
20
 
6
21
  - Improved the performance of custom defined functions in the expression