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 465c61e commit cc6ad45Copy full SHA for cc6ad45
docs/src/index.md
@@ -10,11 +10,11 @@ A Julia package for approximating the inverse of the Langevin function, ℒ.
10
\mathcal{L}(x) = \coth(x) - \frac{1}{x}
11
```
12
13
-```@eval
+```@example
14
using CairoMakie
15
using InteractiveUtils
16
using InverseLangevinApproximations
17
-using Markdown
+using Markdown # hide
18
L(x) = x==zero(x) ? 0 : coth(x) - 1/x
19
x_true = range(0.0, 10.0, length = 101)
20
y = L.(x_true)
@@ -28,6 +28,6 @@ for f in fs
28
lines!(ax, y, rel_error, label = string(f))
29
end
30
axislegend(position = :lt)
31
-save("example.png", f)
32
-Markdown.parse("")
+save("example.png", f) # hide
+Markdown.parse("") # hide
33
0 commit comments