hypergeometric 0.1.5.0 → 0.1.5.1
raw patch · 4 files changed
+7/−5 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−1
- README.md +1/−1
- hypergeometric.cabal +1/−1
- src/Math/Hypergeometric.hs +0/−2
CHANGELOG.md view
@@ -1,9 +1,13 @@ # hypergeometric +## 0.1.5.1++ * Fix incorrect documentation+ ## 0.1.5.0 * Throw errors when outside of the radius of convergence for a series- * Add `euler` which transforms ₂F₁ to something that converges for all z.+ * Add `euler` which transforms ₂F₁ * Fix egregious typo in documentation ## 0.1.4.0
README.md view
@@ -1,3 +1,3 @@ # Hypergeometric -Various statistical functions including `erf`, [computed via hypergeometric functions](http://vmchale.com/static/serve/hypergeometric.pdf)+Various statistical functions including `erf`, [computed via hypergeometric functions](https://www.jsoftware.com/papers/jhyper.pdf)
hypergeometric.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: hypergeometric-version: 0.1.5.0+version: 0.1.5.1 license: AGPL-3 license-file: COPYING copyright: Copyright: (c) 2022 Vanessa McHale
src/Math/Hypergeometric.hs view
@@ -32,8 +32,6 @@ -- -- \( \displaystyle _2F_1(a,b;c;z) = (1-z)^{-a} {}_2F_1\left(a,c-b;c;\frac{z}{z-1}\right) \) ----- The right-hand side converges for all \(z\).--- -- Koekoek, Roelef and Swarttouw, René F. [The Askey-scheme of hypergeometric orthogonal polynomials and its q-analogue](https://arxiv.org/abs/math/9602214). -- -- @since 0.1.5.0