@@ -214,7 +214,8 @@ def bode_plot(
214214 Set the frame of reference used to center the plot title. If set to
215215 'axes' (default), the horizontal position of the title will be
216216 centered relative to the axes. If set to 'figure', it will be
217- centered with respect to the figure (faster execution).
217+ centered with respect to the figure (faster execution). The
218+ default value can be set using config.defaults['freqplot.title_frame'].
218219 wrap_phase : bool or float
219220 If wrap_phase is `False` (default), then the phase will be unwrapped
220221 so that it is continuously increasing or decreasing. If wrap_phase is
@@ -1203,14 +1204,17 @@ def nyquist_response(
12031204 be set using config.defaults['nyquist.encirclement_threshold'].
12041205 indent_direction : str, optional
12051206 For poles on the imaginary axis, set the direction of indentation to
1206- be 'right' (default), 'left', or 'none'.
1207+ be 'right' (default), 'left', or 'none'. The default value can
1208+ be set using config.defaults['nyquist.indent_direction'].
12071209 indent_points : int, optional
12081210 Number of points to insert in the Nyquist contour around poles that
12091211 are at or near the imaginary axis.
12101212 indent_radius : float, optional
12111213 Amount to indent the Nyquist contour around poles on or near the
1212- imaginary axis. Portions of the Nyquist plot corresponding to indented
1213- portions of the contour are plotted using a different line style.
1214+ imaginary axis. Portions of the Nyquist plot corresponding to
1215+ indented portions of the contour are plotted using a different line
1216+ style. The default value can be set using
1217+ config.defaults['nyquist.indent_radius'].
12141218 omega_limits : array_like of two values
12151219 Set limits for plotted frequency range. If Hz=True the limits are
12161220 in Hz otherwise in rad/s. Specifying ``omega`` as a list of two
@@ -1529,7 +1533,9 @@ def nyquist_plot(
15291533 ``omega`` as a list of two elements is equivalent to providing
15301534 ``omega_limits``.
15311535 unit_circle : bool, optional
1532- If ``True``, display the unit circle, to read gain crossover frequency.
1536+ If ``True``, display the unit circle, to read gain crossover
1537+ frequency. The circle style is determined by
1538+ config.defaults['nyquist.circle_style'].
15331539 mt_circles : array_like, optional
15341540 Draw circles corresponding to the given magnitudes of sensitivity.
15351541 ms_circles : array_like, optional
@@ -1567,12 +1573,13 @@ def nyquist_plot(
15671573 arrows : int or 1D/2D array of floats, optional
15681574 Specify the number of arrows to plot on the Nyquist curve. If an
15691575 integer is passed. that number of equally spaced arrows will be
1570- plotted on each of the primary segment and the mirror image. If a 1D
1571- array is passed, it should consist of a sorted list of floats between
1572- 0 and 1, indicating the location along the curve to plot an arrow. If
1573- a 2D array is passed, the first row will be used to specify arrow
1574- locations for the primary curve and the second row will be used for
1575- the mirror image.
1576+ plotted on each of the primary segment and the mirror image. If a
1577+ 1D array is passed, it should consist of a sorted list of floats
1578+ between 0 and 1, indicating the location along the curve to plot an
1579+ arrow. If a 2D array is passed, the first row will be used to
1580+ specify arrow locations for the primary curve and the second row
1581+ will be used for the mirror image. Default value is 2 and can be
1582+ set using config.defaults['nyquist.arrows'].
15761583 arrow_size : float, optional
15771584 Arrowhead width and length (in display coordinates). Default value is
15781585 8 and can be set using config.defaults['nyquist.arrow_size'].
@@ -1609,11 +1616,14 @@ def nyquist_plot(
16091616 max_curve_magnitude : float, optional
16101617 Restrict the maximum magnitude of the Nyquist plot to this value.
16111618 Portions of the Nyquist plot whose magnitude is restricted are
1612- plotted using a different line style.
1619+ plotted using a different line style. The default value is 20 and
1620+ can be set using config.defaults['nyquist.max_curve_magnitude'].
16131621 max_curve_offset : float, optional
16141622 When plotting scaled portion of the Nyquist plot, increase/decrease
16151623 the magnitude by this fraction of the max_curve_magnitude to allow
16161624 any overlaps between the primary and mirror curves to be avoided.
1625+ The default value is 0.02 and can be set using
1626+ config.defaults['nyquist.max_curve_magnitude'].
16171627 mirror_style : [str, str] or False
16181628 Linestyles for mirror image of the Nyquist curve. The first element
16191629 is used for unscaled portions of the Nyquist curve, the second element
0 commit comments