8000 fix gain handling in rlocus and sisotool by sawyerbfuller · Pull Request #809 · python-control/python-control · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions control/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ def reset_defaults():
from .rlocus import _rlocus_defaults
defaults.update(_rlocus_defaults)

from .sisotool import _sisotool_defaults
defaults.update(_sisotool_defaults)

from .namedio import _namedio_defaults
defaults.update(_namedio_defaults)

Expand Down
2 changes: 1 addition & 1 deletion control/matlab/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def nyquist(*args, **kwargs):
def _parse_freqplot_args(*args):
"""Parse arguments to frequency plot routines (bode, nyquist)"""
syslist, plotstyle, omega, other = [], [], None, {}
i = 0;
i = 0
while i < len(args):
# Check to see if this is a system of some sort
if issys(args[i]):
Expand Down
Loading
0