mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add r-waveslim.
* gnu/packages/cran.scm (r-waveslim): New variable.
This commit is contained in:
parent
db084d79ea
commit
f3949fecb3
1 changed files with 25 additions and 0 deletions
|
@ -8588,3 +8588,28 @@ (define-public r-tiff
|
||||||
in-memory raw vectors.")
|
in-memory raw vectors.")
|
||||||
;; Either of these two license versions.
|
;; Either of these two license versions.
|
||||||
(license (list license:gpl2 license:gpl3))))
|
(license (list license:gpl2 license:gpl3))))
|
||||||
|
|
||||||
|
(define-public r-waveslim
|
||||||
|
(package
|
||||||
|
(name "r-waveslim")
|
||||||
|
(version "1.7.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "waveslim" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0lqslkihgrd7rbihqhhk57m9vkbnfsznkvk8430cvbcsn7vridii"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("gfortran" ,gfortran)))
|
||||||
|
(home-page "http://waveslim.blogspot.com")
|
||||||
|
(synopsis "Basic wavelet routines for signal processing")
|
||||||
|
(description
|
||||||
|
"This package provides basic wavelet routines for time series (1D),
|
||||||
|
image (2D) and array (3D) analysis. The code provided here is based on
|
||||||
|
wavelet methodology developed in Percival and Walden (2000); Gencay, Selcuk
|
||||||
|
and Whitcher (2001); the dual-tree complex wavelet transform (DTCWT) from
|
||||||
|
Kingsbury (1999, 2001) as implemented by Selesnick; and Hilbert wavelet
|
||||||
|
pairs (Selesnick 2001, 2002).")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue