mathjs 10.0.0 → 10.0.1
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 +7 -0
- package/examples/expressions.js +1 -1
- package/lib/browser/math.js +3 -3
- package/lib/browser/math.js.map +1 -1
- package/lib/cjs/function/probability/gamma.js +28 -30
- package/lib/cjs/header.js +2 -2
- package/lib/cjs/version.js +1 -1
- package/lib/esm/function/probability/gamma.js +28 -30
- package/lib/esm/version.js +1 -1
- package/package.json +1 -1
package/HISTORY.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# History
|
2
2
|
|
3
|
+
# 2021-12-22, version 10.0.1
|
4
|
+
|
5
|
+
- Fix #1681: function `gamma` giving inaccurate complex results in some cases.
|
6
|
+
Thanks @kmdrGroch.
|
7
|
+
- Fixed a typo in an example, see #2366. Thanks @blackwindforce.
|
8
|
+
|
9
|
+
|
3
10
|
# 2021-11-03, version 10.0.0
|
4
11
|
|
5
12
|
!!! BE CAREFUL: BREAKING CHANGES IN THE TYPESCRIPT DEFINITIONS !!!
|
package/examples/expressions.js
CHANGED