diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-07 13:22:43 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-07 18:44:04 +0100 |
commit | f3949fecb398eba1f6153e37fb726a242ae549bb (patch) | |
tree | 95d0dc5d4d5e73075095674c16968e1360cfb84a /gnu | |
parent | db084d79ea6fd82bab850cb953a96cac5dce723b (diff) | |
download | patches-f3949fecb398eba1f6153e37fb726a242ae549bb.tar patches-f3949fecb398eba1f6153e37fb726a242ae549bb.tar.gz |
gnu: Add r-waveslim.
* gnu/packages/cran.scm (r-waveslim): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 4531417f83..e7ce71a90f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8588,3 +8588,28 @@ bitmap images stored in the TIFF format. It can read and write both files and in-memory raw vectors.") ;; Either of these two license versions. (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))) |