guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

52/53: gnu: Add r-rootsolve.


From: Ricardo Wurmus
Subject: 52/53: gnu: Add r-rootsolve.
Date: Thu, 16 Aug 2018 11:05:04 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit cea4d360d4b21c1dc27c9ec676bc08830f600c61
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Aug 16 16:47:42 2018 +0200

    gnu: Add r-rootsolve.
    
    * gnu/packages/cran.scm (r-rootsolve): New variable.
---
 gnu/packages/cran.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 3665e35..411e5a9 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -4813,3 +4813,37 @@ receiver operating characteristic (ROC curves).  The 
area under the
 curve (AUC) can be compared with statistical tests based on U-statistics or
 bootstrap.  Confidence intervals can be computed for (p)AUC or ROC curves.")
     (license license:gpl3+)))
+
+(define-public r-rootsolve
+  (package
+    (name "r-rootsolve")
+    (version "1.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rootSolve" version))
+       (sha256
+        (base32
+         "08ic6ggcc5dw4nv9xsqkm3vnvswmxyhnqnv1rdjv1h2gy1ivpcq8"))))
+    (properties `((upstream-name . "rootSolve")))
+    (build-system r-build-system)
+    (native-inputs `(("gfortran" ,gfortran)))
+    (home-page "https://cran.r-project.org/web/packages/rootSolve/";)
+    (synopsis "Tools for the analysis of ordinary differential equations")
+    (description
+     "This package provides routines to find the root of nonlinear functions,
+and to perform steady-state and equilibrium analysis of @dfn{ordinary
+differential equations} (ODE).  It includes routines that:
+
address@hidden
address@hidden generate gradient and jacobian matrices (full and banded),
address@hidden find roots of non-linear equations by the Newton-Raphson method,
address@hidden estimate steady-state conditions of a system of (differential) 
equations
+  in full, banded or sparse form, using the Newton-Raphson method, or by
+  dynamically running,
address@hidden solve the steady-state conditions for uni- and multicomponent 
1-D, 2-D,
+  and 3-D partial differential equations, that have been converted to ordinary
+  differential equations by numerical differencing (using the method-of-lines
+  approach).
address@hidden enumerate\n")
+    (license license:gpl2+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]