pdf files; edits

This commit is contained in:
jverzani
2024-10-15 17:17:25 -04:00
parent c1629e4f1a
commit 30086f9517
50 changed files with 1307 additions and 86 deletions

View File

@@ -304,11 +304,11 @@ x0 = [4.0]
prob = OptimizationProblem(F, x0)
```
The problem is solved through the common interface with a specified method, in this case `Newton`:
The problem is solved through the common interface with a specified method, in this case `NelderMead`:
```{julia}
soln = solve(prob, Newton())
soln = solve(prob, NelderMead())
```
:::{.callout-note}