Skip to content

Commit 564495c

Browse files
Fix the failing plotting example from the README
1 parent d612f3e commit 564495c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ But we can just plot them directly:
5757
```julia
5858
using Statistics
5959
stds = std.(sol.pu)
60-
plot(sol.t, hcat(stds...)', color=["#CB3C33" "#389826" "#9558B2"]
60+
plot(sol.t, hcat(stds...)', color=["#CB3C33" "#389826" "#9558B2"],
6161
label=["std(u1(t))" "std(u2(t))"], xlabel="t", ylabel="standard-deviation")
6262
```
6363

0 commit comments

Comments
 (0)