Compare commits

...

2 Commits

Author SHA1 Message Date
john verzani
b02cadab07
Merge pull request #150 from aligurbu/patch-1
Update quick_notes.qmd
2025-07-27 15:22:44 -04:00
Ali Gürbüz
22896a36ea
Update quick_notes.qmd
Typo fixing
2025-07-27 11:07:38 -07:00

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.)