Skip to content

Commit

Permalink
add parameter yzoom
Browse files Browse the repository at this point in the history
  • Loading branch information
ufechner7 committed Aug 24, 2024
1 parent a6321d5 commit 74c3960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plotx.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
function plotx(X, Y...; xlabel="time [s]", ylabels=nothing, labels=nothing, xlims=nothing, ylims=nothing, ann=nothing,
scatter=false, fig="", title="", ysize=14, disp=false)
scatter=false, fig="", title="", ysize=14, yzoom=0.9, disp=false)
if disp
len=length(Y)
fig_ = plt.figure(fig, figsize=(8, len*2))
fig_ = plt.figure(fig, figsize=(8, len*2*yzoom))
ax=[]
for (i,y) in pairs(Y)
subplot=100len+10+i
Expand Down

0 comments on commit 74c3960

Please sign in to comment.