mathjs 5.0.3 → 5.0.4
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 +9 -0
- package/README.md +2 -1
- package/dist/math.js +974 -958
- package/dist/math.min.js +5 -5
- package/dist/math.min.map +1 -1
- package/docs/reference/functions/typeof.md +13 -13
- package/lib/function/probability/combinations.js +11 -10
- package/lib/function/probability/gamma.js +5 -13
- package/lib/function/probability/permutations.js +2 -12
- package/lib/function/probability/product.js +19 -0
- package/lib/function/utils/typeof.js +13 -13
- package/lib/utils/array.js +27 -19
- package/lib/version.js +1 -1
- package/package.json +2 -1
- package/src/function/probability/combinations.js +10 -8
- package/src/function/probability/gamma.js +5 -13
- package/src/function/probability/permutations.js +2 -11
- package/src/function/probability/product.js +17 -0
- package/src/function/utils/typeof.js +13 -13
- package/src/utils/array.js +31 -23
- package/src/version.js +1 -1
package/HISTORY.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# History
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## 2018-07-22, version 5.0.4
|
|
5
|
+
|
|
6
|
+
- Strongly improved the performance of functions `factorial` for numbers.
|
|
7
|
+
This improves performance of functions `gamma`, `permutation`, and
|
|
8
|
+
`combination` too. See #1170. Thanks @honeybar.
|
|
9
|
+
- Strongly improved the performance of function `reshape`, thanks to a
|
|
10
|
+
friend of @honeybar.
|
|
11
|
+
|
|
12
|
+
|
|
4
13
|
## 2018-07-14, version 5.0.3
|
|
5
14
|
|
|
6
15
|
- Fixed many functions (for example `add` and `subtract`) not working
|
package/README.md
CHANGED
|
@@ -7,7 +7,8 @@ Math.js is an extensive math library for JavaScript and Node.js. It features a f
|
|
|
7
7
|
[](https://www.npmjs.com/package/mathjs)
|
|
8
8
|
[](https://www.npmjs.com/package/mathjs)
|
|
9
9
|
[](https://travis-ci.org/josdejong/mathjs)
|
|
10
|
-
](https://greenkeeper.io/)
|
|
11
|
+
[]()
|
|
11
12
|
[](https://github.com/josdejong/mathjs/blob/master/LICENSE)
|
|
12
13
|
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fjosdejong%2Fmathjs?ref=badge_shield)
|
|
13
14
|
[](https://slack.bri.im)
|