Skip to content

Commit

Permalink
add two more examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Uwe Fechner committed Apr 10, 2024
1 parent f5dd38c commit 8b4c8cb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/multi-channel_shifted.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
using ControlPlots

T = 2pi:0.1:4pi
X = sin.(T)
Y = cos.(T)
p = plotx(T, X, Y; ylabels=["sin","cos"], fig="2-chan");
5 changes: 5 additions & 0 deletions examples/shifted.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
using ControlPlots

X = 2pi:0.1:4pi
Y = sin.(X)
p = plot(X, Y)

0 comments on commit 8b4c8cb

Please sign in to comment.