You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# in all other cycles we just have to check (size(Y,2)) combinations
188
+
# in all other cycles we just have to check (oldsize(Y,2)) combinations
189
189
else
190
190
191
191
Y_act, NNdist_new =embedding_cycle_MDOP!(Y_act, counter, NNdist_old, M, Ys, τs, w,
@@ -281,7 +281,7 @@ corresponding to that maximum of maxima. In this first embedding cycle it also
281
281
returns the time series number, which act as Y_act.
282
282
"""
283
283
functionchoose_optimal_tau1(βs::Array{T, 2}, M::Int) where {T}
284
-
NN =size(βs,2)
284
+
NN =oldsize(βs,2)
285
285
maxis =zeros(T, NN)
286
286
max_idx =zeros(Int, NN)
287
287
for i =1:NN
@@ -303,7 +303,7 @@ maxima. It returns the index of this maximum as well as the time series number
303
303
corresponding to that maximum of maxima.
304
304
"""
305
305
functionchoose_optimal_tau2(βs::Array{T, 2}) where {T}
306
-
NN =size(βs,2)
306
+
NN =oldsize(βs,2)
307
307
maxis =zeros(T, NN)
308
308
max_idx =zeros(Int, NN)
309
309
for i =1:NN
@@ -413,7 +413,7 @@ considered in the computation of `L` (see [`uzal_cost`](@ref)). When this
413
413
statistic reaches its global minimum the maximum delay value `τ_max` gets
414
414
returned. When `s` is a multivariate `StateSpaceSet`, `τ_max` will becomputed for all
415
415
timeseries of that StateSpaceSet and the maximum value will be returned. The returned
416
-
`L`-statistic has size `(length(tw), size(s,2))`.
416
+
`L`-statistic has size `(length(tw), oldsize(s,2))`.
417
417
418
418
[^Nichkawde2013]: Nichkawde, Chetan (2013). [Optimal state-space reconstruction using derivatives on projected manifold. Physical Review E 87, 022905](https://doi.org/10.1103/PhysRevE.87.022905).
419
419
[^Uzal2011]: Uzal, L. C., Grinblat, G. L., Verdes, P. F. (2011). [Optimal reconstruction of dynamical systems: A noise amplification approach. Physical Review E 84, 016223](https://doi.org/10.1103/PhysRevE.84.016223).
0 commit comments