gnu: Add r-sparsesvd.

* gnu/packages/cran.scm (r-sparsesvd): New variable.
master
Ricardo Wurmus 2019-01-07 16:26:43 +01:00 committed by Ricardo Wurmus
parent fbebccf7f6
commit b614009e6a
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -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))))