https://github.com/ymtoo/longtermspectralaverage
https://github.com/ymtoo/longtermspectralaverage
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ymtoo/longtermspectralaverage
- Owner: ymtoo
- Created: 2022-12-05T03:38:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-28T08:57:34.000Z (over 3 years ago)
- Last Synced: 2025-03-21T05:44:15.610Z (about 1 year ago)
- Language: Julia
- Size: 530 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LongTermSpectralAverage.jl
The package implements Long-Term Spectral Average (LTSA).
## Usage
```julia
using Dates
using LongTermSpectralAverage
starttimes = (DateTime(2019,1,1,0,0,0):Day(1):DateTime(2019,1,30,0,0,0))
xs = [randn(10000) for _ ∈ 1:length(starttimes)]
ltsa_plot(xs, starttimes; fs = 9600)
```
