You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
usesim as an output argument, but this unnecessarily clashes with the imaginary unit im in Julia.
In this particular case it can be even more troubling as some users of nyquist may want to create the full complex frequency response by assembling the provided real and imaginary parts as in G(jw) = re(jw) + i im(jw). In fact, this is how I myself encountered the trouble: Gjw = re + im*im.
Of course users can rename their output arguments as they like, but some of them may just copy and paste. And why promoting the habit of overwriting Julia's keywords.
The text was updated successfully, but these errors were encountered:
Docstring for nyquist
ControlSystems.jl/lib/ControlSystemsBase/src/freqresp.jl
Line 343 in 475758a
im
as an output argument, but this unnecessarily clashes with the imaginary unitim
in Julia.In this particular case it can be even more troubling as some users of
nyquist
may want to create the full complex frequency response by assembling the provided real and imaginary parts as inG(jw) = re(jw) + i im(jw)
. In fact, this is how I myself encountered the trouble:Gjw = re + im*im
.Of course users can rename their output arguments as they like, but some of them may just copy and paste. And why promoting the habit of overwriting Julia's keywords.
The text was updated successfully, but these errors were encountered: