powered by
This function computes fast approximate entropy of given time series.
FastApEn(TS, dim = 2, lag = 1, r = 0.15 * sd(TS))
- given time series
- dimension of given time series, default value is 2
- downsampling, default value is 1
- radius of searched areas, default value is 0.15*sd(TS)
# NOT RUN { timser <- rnorm(2000) FastApEn(timser) FastApEn(timser, r = 0.1*sd(timser)) FastApEn(timser, dim = 3, r = 0.1*sd(timser)) # }
Run the code above in your browser using DataLab