@@ -197,19 +197,19 @@ def _parse_freqplot_args(*args):
197
197
198
198
# TODO: rewrite to call root_locus_map, without using legacy plot keyword
199
199
def rlocus (* args , ** kwargs ):
200
- """rlocus(sys[, klist , xlim, ylim, ...])
200
+ """rlocus(sys[, gains , xlim, ylim, ...])
201
201
202
202
Root locus diagram.
203
203
204
204
Calculate the root locus by finding the roots of 1 + k * G(s) where G
205
205
is a linear system with transfer function num(s)/den(s) and each k is
206
- an element of kvect .
206
+ an element of gains .
207
207
208
208
Parameters
209
209
----------
210
210
sys : LTI object
211
211
Linear input/output systems (SISO only, for now).
212
- kvect : array_like, optional
212
+ gains : array_like, optional
213
213
Gains to use in computing plot of closed-loop poles.
214
214
xlim : tuple or list, optional
215
215
Set limits of x axis, normally with tuple
@@ -224,7 +224,7 @@ def rlocus(*args, **kwargs):
224
224
Closed-loop root locations, arranged in which each row corresponds
225
225
to a gain in gains.
226
226
gains : ndarray
227
- Gains used. Same as kvect keyword argument if provided.
227
+ Gains used. Same as gains keyword argument if provided.
228
228
229
229
Notes
230
230
-----
0 commit comments