Skip to content

Commit

Permalink
Fix the failing plotting example from the README
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch authored Aug 30, 2024
1 parent d612f3e commit 564495c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ But we can just plot them directly:
```julia
using Statistics
stds = std.(sol.pu)
plot(sol.t, hcat(stds...)', color=["#CB3C33" "#389826" "#9558B2"]
plot(sol.t, hcat(stds...)', color=["#CB3C33" "#389826" "#9558B2"],
label=["std(u1(t))" "std(u2(t))"], xlabel="t", ylabel="standard-deviation")
```

Expand Down

0 comments on commit 564495c

Please sign in to comment.