r-fftwtools: add v0.9-9 (#20920)

This commit is contained in:
Glenn Johnson 2021-01-15 02:02:49 -06:00 committed by GitHub
parent 3e93175b65
commit 7fe5430d0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,18 +7,22 @@
class RFftwtools(RPackage):
"""Provides a wrapper for several 'FFTW' functions. This package provides
"""Wrapper for 'FFTW3' Includes: One-Dimensional Univariate,
One-Dimensional Multivariate, and Two-Dimensional Transform
Provides a wrapper for several 'FFTW' functions. This package provides
access to the two-dimensional 'FFT', the multivariate 'FFT', and the
one-dimensional real to complex 'FFT' using the 'FFTW3' library. The
package includes the functions fftw() and mvfftw() which are designed
to mimic the functionality of the R functions fft() and mvfft().
The 'FFT' functions have a parameter that allows them to not return
the redundant complex conjugate when the input is real data."""
package includes the functions fftw() and mvfftw() which are designed to
mimic the functionality of the R functions fft() and mvfft(). The 'FFT'
functions have a parameter that allows them to not return the redundant
complex conjugate when the input is real data."""
homepage = "https://github.com/krahim/fftwtools"
url = "https://cloud.r-project.org/src/contrib/fftwtools_0.9-8.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/fftwtools"
version('0.9-9', sha256='a9273b7e495d228d740ab4525467e4bbefe8614bd2d97e7234017f1305f51441')
version('0.9-8', sha256='4641c8cd70938c2a8bde0b6da6cf7f83e96175ef52f1ca42ec3920a1dabf1bdb')
depends_on('r@2.15.2:', type=('build', 'run'))