The first line of the docstring for rlocus suggests that there's a kwarg klist,
"""rlocus(sys[, klist, xlim, ylim, ...])
|
"""rlocus(sys[, klist, xlim, ylim, ...]) |
but in the list of parameters it's kvect.
|
kvect : array_like, optional |
They're all just passed on to root_locus_plot anyway
|
retval = root_locus_plot(*args, **kwargs) |
and it's expecting kvect, or, really, gains
|
gains = config._process_legacy_keyword(kwargs, 'kvect', 'gains', gains) |
The first line of the docstring for
rlocussuggests that there's a kwargklist,python-control/control/matlab/wrappers.py
Line 200 in e4a03e8
but in the list of parameters it's
kvect.python-control/control/matlab/wrappers.py
Line 212 in e4a03e8
They're all just passed on to
root_locus_plotanywaypython-control/control/matlab/wrappers.py
Line 247 in e4a03e8
and it's expecting
kvect, or, really,gainspython-control/control/rlocus.py
Line 163 in e4a03e8