guix-commits
[Top][All Lists]
Advanced

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

13/18: gnu: Add r-sparsesvd.


From: guix-commits
Subject: 13/18: gnu: Add r-sparsesvd.
Date: Mon, 7 Jan 2019 12:44:14 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit b614009e6a8c965ef73d8d65e99d44b933f9eb12
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Jan 7 16:26:43 2019 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6551811..9aa6e3b 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -8724,3 +8724,26 @@ R packages (on CRAN, Bioconductor or Github).")
      "This package enables you to define a command-line interface by just
 giving it a description in the specific format.")
     (license license:expat)))
+
+(define-public r-sparsesvd
+  (package
+    (name "r-sparsesvd")
+    (version "0.1-4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "sparsesvd" version))
+       (sha256
+        (base32
+         "1yf373552wvdnd65r7hfcqa3v29dqn7jd4cn431mqd2acnqjrsam"))))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-matrix" ,r-matrix)))
+    (home-page "http://tedlab.mit.edu/~dr/SVDLIBC/";)
+    (synopsis "Sparse truncated singular value decomposition")
+    (description
+     "This package provides a Wrapper around the SVDLIBC library
+for (truncated) singular value decomposition of a sparse matrix.  Currently,
+only sparse real matrices in Matrix package format are supported.")
+    ;; SVDLIBC is released under BSD-2.  The R interface is released under
+    ;; BSD-3.
+    (license (list license:bsd-3 license:bsd-2))))



reply via email to

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