We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd6e581 commit 108d530Copy full SHA for 108d530
tutorials/DiffEqUncertainty/02-AD_and_optimization.jmd
@@ -277,7 +277,7 @@ The probability of impacting the wall is now
277
```
278
We can check if this is within tolerance by
279
```julia
280
-λ - 0.01 <= 1e-5
+abs(λ - 0.01) <= 1e-5
281
282
283
Again, we plot some Monte Carlo simulations from this result as follows
@@ -305,4 +305,4 @@ end
305
```{julia; echo=false; skip="notebook"}
306
using SciMLTutorials
307
SciMLTutorials.tutorial_footer(WEAVE_ARGS[:folder],WEAVE_ARGS[:file])
308
-```
+```
0 commit comments