av_d2 {RTisean} | R Documentation |
Takes the output of either d2
or c1
and smoothes it by arithmetically averaging over a given interval.
av_d2(lst, m = 1, M, a = 1, E = FALSE)
lst |
The output of d2 , c1 . |
m |
minimal dimension to print. |
M |
maximal dimension to print. |
a |
smooth over an interval of 2a +1 points. |
E |
show the length scales in rescaled units. |
A list of as many a matrices as the number of dimensions, each containing the epsilon values in the first column and the smoothed correlation sums in the second column.
## Not run: dat <- henon(l=10000,x=1000) d2output <- d2(dat) cordim <- d2output$.d2 smoothed <- av_d2(cordim) plot(smoothed[[1]],t="l",ylim=c(0,5.5),col=2,xlab="Epsilon", ylab=paste("Smoothed", expression(D[2](m,epsilon))),log="x", main="Smoothed Correlation Dimension Plot") for (a in 2:10) points(smoothed[[a]],t="l",col=2) ## End(Not run)