Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change number of DM trials as function of dt #50

Open
caseyjlaw opened this issue Dec 13, 2018 · 1 comment
Open

change number of DM trials as function of dt #50

caseyjlaw opened this issue Dec 13, 2018 · 1 comment

Comments

@caseyjlaw
Copy link
Contributor

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...
@caseyjlaw
Copy link
Contributor Author

Or at least skip trial if delay calc is equal to some previous calc?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant