[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47350] [PATCH 14/29] gnu: Add julia-richardson.
From: |
zimoun |
Subject: |
[bug#47350] [PATCH 14/29] gnu: Add julia-richardson. |
Date: |
Tue, 23 Mar 2021 20:46:36 +0100 |
* gnu/packages/julia-xyz.scm (julia-richardson): New variable.
---
gnu/packages/julia-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index f3a37839e8..a4841fb0f7 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -729,6 +729,33 @@ another package is loaded, so that explicit dependencies
(and long load times)
can be avoided.")
(license license:expat)))
+(define-public julia-richardson
+ (package
+ (name "julia-richardson")
+ (version "1.4.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaMath/Richardson.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06v9ii3d7hh41fsrfklaa8ap55z5s017f888mrd1c18y4fx9i4nx"))))
+ (build-system julia-build-system)
+ (home-page "https://juliapackages.com/p/richardson")
+ (synopsis "Extrapolate function using Richardson method")
+ (description "This package provides a function extrapolate that
+extrapolates a given function @code{f(x)} to @code{f(x0)}, evaluating @code{f}
+only at a geometric sequence of points @code{> x0} (or optionally @code{<
+x0}). The key algorithm is Richardson extrapolation using a Neville–Aitken
+tableau, which adaptively increases the degree of an extrapolation polynomial
+until convergence is achieved to a desired tolerance (or convergence stalls
+due to e.g. floating-point errors). This allows one to obtain @code{f(x0)} to
+high-order accuracy, assuming that @code{f(x0+h)} has a Taylor series or some
+other power series in @code{h}.")
+ (license license:expat)))
+
(define-public julia-staticarrays
(package
(name "julia-staticarrays")
--
2.28.0
- [bug#47350] [PATCH 08/29] gnu: Add julia-abstractffts., (continued)
- [bug#47350] [PATCH 10/29] gnu: Add julia-colors., zimoun, 2021/03/23
- [bug#47350] [PATCH 12/29] gnu: Add julia-requires., zimoun, 2021/03/23
- [bug#47350] [PATCH 15/29] gnu: Add julia-finitedifferences., zimoun, 2021/03/23
- [bug#47350] [PATCH 13/29] gnu: Add julia-chainrulescore., zimoun, 2021/03/23
- [bug#47350] [PATCH 11/29] gnu: Add julia-example., zimoun, 2021/03/23
- [bug#47350] [PATCH 17/29] gnu: Add julia-fillarrays., zimoun, 2021/03/23
- [bug#47350] [PATCH 18/29] gnu: Add julia-commonsubexpressions., zimoun, 2021/03/23
- [bug#47350] [PATCH 14/29] gnu: Add julia-richardson.,
zimoun <=
- [bug#47350] [PATCH 16/29] gnu: Add julia-chainrulestestutils., zimoun, 2021/03/23
- [bug#47350] [PATCH 19/29] gnu: Add julia-calculus., zimoun, 2021/03/23
- [bug#47350] [PATCH 20/29] gnu: Add julia-diffresults., zimoun, 2021/03/23
- [bug#47350] [PATCH 21/29] gnu: Add julia-difftests., zimoun, 2021/03/23
- [bug#47350] [PATCH 26/29] gnu: Add julia-chainrules., zimoun, 2021/03/23
- [bug#47350] [PATCH 27/29] gnu: Add julia-forwarddiff., zimoun, 2021/03/23
- [bug#47350] [PATCH 24/29] gnu: Add julia-specialfunctions., zimoun, 2021/03/23
- [bug#47350] [PATCH 23/29] gnu: Add julia-openspecfun-jll., zimoun, 2021/03/23
- [bug#47350] [PATCH 25/29] gnu: Add julia-diffrules., zimoun, 2021/03/23
- [bug#47350] [PATCH 29/29] gnu: Add julia-zygote., zimoun, 2021/03/23