From 166cc18121bd3e5859b1b8c5404b56a44f83525d Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 13:31:48 +0100 Subject: [v2 16/34] gnu: Add package r-matrixcalc * gnu/packages/cran.scm (r-matrixcalc): New variable. --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 25c3057bea..7807bdb7aa 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19688,3 +19688,29 @@ some of the assumptions of the imputation algorithm, and functions to analyze multiply imputed data sets with the appropriate degree of sampling uncertainty.") (license license:gpl2+))) + +(define-public r-matrixcalc + (package + (name "r-matrixcalc") + (version "1.0-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "matrixcalc" version)) + (sha256 + (base32 + "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp")))) + (properties `((upstream-name . "matrixcalc"))) + (build-system r-build-system) + (home-page + "https://cran.r-project.org/web/packages/matrixcalc") + (synopsis + "Collection of functions for matrix calculations") + (description + "This package provides a collection of functions to support matrix +calculations for probability, econometric and numerical analysis. There are +additional functions that are comparable to APL functions which are useful for +actuarial models such as pension mathematics. This package is used for +teaching and research purposes at the Department of Finance and Risk +Engineering, New York University, Polytechnic Institute, Brooklyn, NY 11201.") + (license license:gpl2+))) -- 2.20.1