@@ -147,6 +147,8 @@ def bode_plot(
147147 figure with the correct number and shape of axes, a new figure is
148148 created. The shape of the array must match the shape of the
149149 plotted data.
150+ freq_label: str, optional
151+ Frequency label (defaults to "rad/sec" or "Hertz")
150152 grid : bool, optional
151153 If True, plot grid lines on gain and phase plots. Default is set by
152154 `config.defaults['freqplot.grid']`.
@@ -168,6 +170,8 @@ def bode_plot(
168170 legend_loc : int or str, optional
169171 Include a legend in the given location. Default is 'center right',
170172 with no legend for a single response. Use False to suppress legend.
173+ magnitude_label : str, optional
174+ Label to use for magnitude axis. Defaults to "Magnitude".
171175 margins_method : str, optional
172176 Method to use in computing margins (see :func:`stability_margins`).
173177 omega_limits : array_like of two values
@@ -179,6 +183,8 @@ def bode_plot(
179183 Number of samples to use for the frequeny range. Defaults to
180184 config.defaults['freqplot.number_of_samples']. Ignored if data is
181185 not a list of systems.
186+ phase_label : str, optional
187+ Label to use for phase axis. Defaults to "Phase [rad]".
182188 plot : bool, optional
183189 (legacy) If given, `bode_plot` returns the legacy return values
184190 of magnitude, phase, and frequency. If False, just return the
0 commit comments