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
Currently we have a fixed DM grid that is searched for each resampling scale. This is clearly suboptimal, since larger values of dt require fewer DM trials.
Not clear how to use dm indices if we change the dm grid for larger dt. One possibility is to take a subset of dm that are approximately correct for larger dt, so:
dmarr = [0, 10, 20, 30, 40, 50, 60]
dt = 1
for dmind in dminds:
...search...
dt = 2
dminds = [0, 2, 4, 6] # or whatever
for dmind in dminds:
...search...
The text was updated successfully, but these errors were encountered:
Currently we have a fixed DM grid that is searched for each resampling scale. This is clearly suboptimal, since larger values of dt require fewer DM trials.
Not clear how to use dm indices if we change the dm grid for larger dt. One possibility is to take a subset of dm that are approximately correct for larger dt, so:
The text was updated successfully, but these errors were encountered: