Skip to content

Commit

Permalink
add mwe_03.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
Uwe Fechner committed May 3, 2024
1 parent 171acf5 commit b08c46c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions mwes/mwe_03.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using ControlPlots
x = 1:10
z = 2*x

x_max = maximum(x)
z_max = maximum(z)

xlabel = "x [m]"
plot(x, z; xlabel, ylabel="z [m]", xlims = (x_max-15.0, x_max+5), ylims = (z_max-15.0, z_max+5))

0 comments on commit b08c46c

Please sign in to comment.