Skip to content

Commit 8d60c66

Browse files
committed
close #924
1 parent d585d73 commit 8d60c66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ControlSystemsBase/src/freqresp.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,12 +346,12 @@ function bodemag_nohess!(ws::BodemagWorkspace, sys::LTISystem, w::AbstractVector
346346
end
347347

348348
"""
349-
re, im, w = nyquist(sys[, w])
349+
re, img, w = nyquist(sys[, w])
350350
351351
Compute the real and imaginary parts of the frequency response of system `sys`
352352
at frequencies `w`. See also [`nyquistplot`](@ref)
353353
354-
`re` and `im` has size `(ny, nu, length(w))`"""
354+
`re` and `img` has size `(ny, nu, length(w))`"""
355355
@autovec (1, 2) function nyquist(sys::LTISystem, w::AbstractVector)
356356
resp = freqresp(sys, w)
357357
return real(resp), imag(resp), w

0 commit comments

Comments
 (0)