Include Julia plot for limit function

Add Julia code for plotting the limit function.
This commit is contained in:
Ali Gürbüz
2026-01-31 16:40:11 -05:00
committed by GitHub
parent 83bddc19e3
commit c268744501

View File

@@ -1371,6 +1371,12 @@ $$
The limit exists, what is the value?
```{julia}
#| hold: true
#| echo: false
f(x) = (cos(x) - 1)/x
p = plot(f, -1, 1)
```
```{julia}
#| hold: true