diff --git a/Code_Python/test.py b/Code_Python/test.py index 79ba5c9..37044a2 100644 --- a/Code_Python/test.py +++ b/Code_Python/test.py @@ -22,7 +22,7 @@ Characteristics - The code has been written and tested in Python 3.7.7. - Implementation of several digital signal filters and functions for the generation of synthetic (surrogate) time-series. -- Filter list (file ): +- Filters (file ): Generic Generic filter SMA Simple moving average EMA Exponential moving average @@ -75,7 +75,7 @@ a Y Filtered dataset (output). X_synt - Surrogate/synthetic generated time-series (output) + Surrogate/synthetic generated time-series (output). n_reps Number of surrogates/synthetic time-series to generate. @@ -87,14 +87,14 @@ results are shown in file . - Filter: example showing filtering using an EMA, a Butterworth modified filter, and a type 2 Zero-lag EMA. -- Kalman: example showing filtering using the three types of Kalman filter, - alpha, alpha-beta, and alpha-beta-gamma. +- Kalman: example showing filtering using the three types of Kalman filter + (alpha, alpha-beta, and alpha-beta-gamma). - FFT_boot: example showing the generation of surrogates time-series using - the Fourier-transform algorithm and the discrete differences. + the Fourier-transform algorithm and discrete differences. - ME_boot: example showing the generation of surrogates time-series using the - using maximum entropy bootstrap algorithm and the discrete differences. + maximum entropy bootstrap algorithm and discrete differences. - Response: example showing the frequency response and lag/group delay for a band-pass filter. diff --git a/README.md b/README.md index 414a745..8b7365a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ - The code has been written and tested in Python 3.7.7. - Implementation of several digital signal filters and functions for the generation of synthetic (surrogate) time-series. -- Filter list (*filters.py*): +- Filters (*filters.py*): - **Generic** Generic filter. - **SMA** Simple moving average. - **EMA** Exponential moving average. @@ -57,20 +57,20 @@ `Y` Filtered dataset (output). -`X_synt` Surrogate/synthetic generated time-series (output) +`X_synt` Surrogate/synthetic generated time-series (output). `n_reps` Number of surrogates/synthetic time-series to generate. ## Examples -There are five examples (all of them use the dataset in *spx.csv*). The results are shown [here](Results_Examples.pdf). +There are five examples (all of them use the dataset in *spx.csv*). The results are shown [here](Result_Examples.pdf). - **Filter** Example showing filtering using an EMA, a Butterworth modified filter, and a type 2 Zero-lag EMA. -- **Kalman** Example showing filtering using the three types of Kalman filter, alpha, alpha-beta, and alpha-beta-gamma. +- **Kalman** Example showing filtering using the three types of Kalman filter (alpha, alpha-beta, and alpha-beta-gamma). -- **FFT_boot** Example showing the generation of surrogates time-series using the Fourier-transform algorithm and the discrete differences. +- **FFT_boot** Example showing the generation of surrogates time-series using the Fourier-transform algorithm and discrete differences. -- **ME_boot** Example showing the generation of surrogates time-series using the using maximum entropy bootstrap algorithm and the discrete differences. +- **ME_boot** Example showing the generation of surrogates time-series using the maximum entropy bootstrap algorithm and discrete differences. - **Response** Example showing the frequency response and lag/group delay for a band-pass filter.