https://github.com/zoziha/wavepack
WAVEPACK: routines to compute the wavelet transform of a time series, and significance levels.
https://github.com/zoziha/wavepack
fortran fpm wavelet wavepack
Last synced: 3 months ago
JSON representation
WAVEPACK: routines to compute the wavelet transform of a time series, and significance levels.
- Host: GitHub
- URL: https://github.com/zoziha/wavepack
- Owner: zoziha
- License: mit
- Created: 2021-12-23T10:23:32.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-23T14:08:43.000Z (over 3 years ago)
- Last Synced: 2024-12-30T09:37:14.913Z (4 months ago)
- Topics: fortran, fpm, wavelet, wavepack
- Language: Fortran
- Homepage:
- Size: 56.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WAVEPACK
`WAVEPACK`: routines to compute the wavelet transform of a time series, and significance levels.
*Note: This stage, only `real64` is supported.*
## Get Started
### Dependencies
- Git
- [fortran-lang/fpm](https://github.com/fortran-lang/fpm)### Build with [fortran-lang/fpm](https://github.com/fortran-lang/fpm)
Fortran Package Manager (fpm) is a package manager and build system for Fortran.
You can build `wavepack` using provided `fpm.toml`:```sh
fpm build --profile release
```To use `wavepack` within your `fpm` project, add the following to your `fpm.toml` file:
```toml
[dependencies]
wavepack = { git="https://github.com/zoziha/wavepack" }
```## Links
- [danielrios12/wavelet---torrence-e-compo](https://github.com/danielrios12/wavelet---torrence-e-compo)
- [fortran-lang/fftpack](https://github.com/fortran-lang/fftpack)
- [netlib/random](http://www.netlib.org/random/)