@@ -274,7 +274,7 @@ Here's an example of how to do this using `neurodiffeq`:
274
274
275
275
``` python
276
276
T_MIN , T_MAX = 0 , 1
277
- LAMBDA_MIN , LAMBDA_MAX = 3 , 5 # first parameter, index = 0
277
+ LAMBDA_MIN , LAMBDA_MAX = 3 , 5 # first parameter, index = 0
278
278
U0_MIN , U0_MAX = 0.2 , 0.6 # second parameter, index = 1
279
279
```
280
280
@@ -286,7 +286,7 @@ Here's an example of how to do this using `neurodiffeq`:
286
286
287
287
# The keyword argument must be named "u_0" in BundleIVP. If you use anything else, e.g. `y0`, `u0`, etc., it won't work.
288
288
conditions = [
289
- BundleIVP(t_0 = 0 , u_0 = None , bundle_param_lookup = {' u_0' : 1 }) # u_0 has index 1
289
+ BundleIVP(t_0 = 0 , u_0 = None , bundle_param_lookup = {' u_0' : 1 }) # u_0 has index 1
290
290
]
291
291
292
292
solver = BundleSolver1D(
@@ -295,7 +295,7 @@ Here's an example of how to do this using `neurodiffeq`:
295
295
t_min = T_MIN , t_max = T_MAX ,
296
296
theta_min = [LAMBDA_MIN , U0_MIN ], # λ has index 0; u_0 has index 1
297
297
theta_max = [LAMBDA_MAX , U0_MAX ], # λ has index 0; u_0 has index 1
298
- eq_param_index = (0 ,), # λ is the only equation parameter, which has index 0
298
+ eq_param_index = (0 ,), # λ is the only equation parameter, which has index 0
299
299
n_batches_valid = 1 ,
300
300
)
301
301
```
0 commit comments