File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8383from .timeplot import *
8484
8585from .bdalg import *
86+ from .ctrlplot import *
8687from .delay import *
8788from .descfcn import *
8889from .dtime import *
9293from .modelsimp import *
9394from .nichols import *
9495from .phaseplot import *
95- from .plotutil import *
9696from .pzmap import *
9797from .rlocus import *
9898from .statefbk import *
Original file line number Diff line number Diff line change 1- # plotutil .py - utility functions for plotting
1+ # ctrlplot .py - utility functions for plotting
22# Richard M. Murray, 14 Jun 2024
33#
44# Collection of functions that are used by various plotting functions.
Original file line number Diff line number Diff line change 1919
2020from . import config
2121from .bdalg import feedback
22+ from .ctrlplot import suptitle , _find_axes_center
2223from .ctrlutil import unwrap
2324from .exception import ControlMIMONotImplemented
2425from .frdata import FrequencyResponseData
2526from .lti import LTI , _process_frequency_response , frequency_response
2627from .margins import stability_margins
27- from .plotutil import suptitle , _find_axes_center
2828from .statesp import StateSpace
2929from .timeplot import _make_legend_labels
3030from .xferfcn import TransferFunction
3535 'bode' , 'nyquist' , 'gangof4' ]
3636
3737# Default font dictionary
38- # TODO: move common plotting params to 'ctrlplot' (in plotutil)
38+ # TODO: move common plotting params to 'ctrlplot'
3939_freqplot_rcParams = mpl .rcParams .copy ()
4040_freqplot_rcParams .update ({
4141 'axes.labelsize' : 'small' ,
Original file line number Diff line number Diff line change 1818import numpy as np
1919
2020from . import config
21+ from .ctrlplot import suptitle
2122from .ctrlutil import unwrap
2223from .freqplot import _default_frequency_range , _freqplot_defaults , \
2324 _get_line_labels , _process_ax_keyword
2425from .lti import frequency_response
25- from .plotutil import suptitle
2626from .statesp import StateSpace
2727from .xferfcn import TransferFunction
2828
You can’t perform that action at this time.
0 commit comments