gnu: Add julia-genericsvd.

* gnu/packages/julia-xyz.scm (julia-genericsvd-0.2.2): New variable.
master
nixo 2019-10-12 13:04:25 +02:00
parent 82216a582b
commit 758b8cdd9e
1 changed files with 23 additions and 0 deletions

View File

@ -1977,3 +1977,26 @@ generic element types")
in Julia. The Schur decomposition is the workhorse for eigensystem analysis
of dense non-symmetric matrices.")
(license license:expat)))
(define-public julia-genericsvd
(package
(name "julia-genericsvd")
(version "0.2.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JuliaLinearAlgebra/GenericSVD.jl")
(commit (string-append "v" version))))
(file-name "GenericSVD")
(sha256
(base32 "1qhyyls9m1k8hwf7fhkbd0ksn2r50n4l25f0v6gahjah5yqdz6bq"))))
(propagated-inputs `(("julia-compat" ,julia-compat)))
(build-system julia-build-system)
(home-page "https://github.com/JuliaLinearAlgebra/GenericSVD.jl")
(synopsis " Singular Value Decomposition for generic number types")
(description "Implements Singular Value Decomposition for generic
number types, such as BigFloat, Complex{BigFloat} or Quaternions. It
internally overloads several Base functions such that existing methods (svd,
svdfact and svdvals) should work directly.")
(license license:expat)))