File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name = "ControlSystemsBase"
2
2
uuid = " aaaaaaaa-a6ca-5380-bf3e-84a91bcd477e"
3
3
authors = [" Dept. Automatic Control, Lund University" ]
4
4
repo = " https://github.com/JuliaControl/ControlSystems.jl.git"
5
- version = " 1.16.0 "
5
+ version = " 1.16.1 "
6
6
7
7
[deps ]
8
8
ForwardDiff = " f6369f11-7733-5829-9624-2563aa707210"
Original file line number Diff line number Diff line change @@ -452,13 +452,15 @@ nyquistplot
452
452
if lab != = nothing
453
453
label --> lab
454
454
end
455
- hover --> [hz ? Printf. @sprintf (" f = %.3g" , w/ 2 π) : Printf. @sprintf (" ω = %.3g" , w) for w in w]
455
+ hover_data = [hz ? Printf. @sprintf (" f = %.3g" , w/ 2 π) : Printf. @sprintf (" ω = %.3g" , w) for w in w]
456
456
if adaptive
457
457
indsre = downsample (w, redata, 1 / 500 )[3 ]
458
458
indsim = downsample (w, imdata, 1 / 500 )[3 ]
459
459
inds = sort! (union (indsre, indsim))
460
+ hover --> hover_data[inds]
460
461
redata[inds], imdata[inds]
461
462
else
463
+ hover --> hover_data
462
464
redata, imdata
463
465
end
464
466
end
You can’t perform that action at this time.
0 commit comments