c1 {RTisean} | R Documentation |
Computes curves for the fixed mass computation of the information dimension.
c1(series, d, m, M, t, n, scale = 2, K = 100, l, x = 0, c = 1,pretty = FALSE)
series |
a vector or matrix. |
d |
delay. |
m |
minimal embedding dimension. |
M |
maximal embedding dimension. |
t |
minimal time separation. |
n |
minimal number of center points. |
scale |
resolution, values per octave (2) |
K |
maximal number of neighbours. |
l |
number of values to be read. |
x |
number of values to be skipped. |
c |
column(s) to be read. |
pretty |
clean up output. |
The parameter pretty
must be set to FALSE
if the output of d2
is meant to be post-processed by
c2d
or c2t
.
A list of as many matrices as the embedding dimensions, containing the necessary radius in the first column and the mass in the second column.
## Not run: dat <- henon(10000) infodim <- c1(dat,d=1,m=2,M=6,t=50,n=500) ## End(Not run)