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
params, val = optimize(method, x, dt, search_space={'param1':[options], 'param2':[options], ...},
146
+
tvgamma=tvgamma)
147
+
print('Optimal parameters: ', params)
148
+
x_hat, dxdt_hat = method(x, dt, **params)`
148
149
```
149
150
150
151
### Notebook examples
@@ -170,7 +171,7 @@ To run tests locally, type:
170
171
> pytest pynumdiff
171
172
```
172
173
173
-
Add the flag `--plot` to see plots of the methods against test functions.
174
+
Add the flag `--plot` to see plots of the methods against test functions. Add the flag `--bounds` to print log error bounds (useful when changing method behavior).
0 commit comments