Merge pull request #150 from aligurbu/patch-1

Update quick_notes.qmd
This commit is contained in:
john verzani 2025-07-27 15:22:44 -04:00 committed by GitHub
commit b02cadab07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -97,7 +97,7 @@ In the following, the defined function, `Derivative`, returns an anonymously def
```{julia}
Derivatve(f::Function) = x -> ForwardDiff.derivative(f, x) # ForwardDiff is loaded in CalculusWithJulia
Derivative(f::Function) = x -> ForwardDiff.derivative(f, x) # ForwardDiff is loaded in CalculusWithJulia
```
(The `D` function of `CalculusWithJulia` implements something similar.)