@@ -213,7 +213,8 @@ def bode_plot(
213213 Set the frame of reference used to center the plot title. If set to
214214 'axes' (default), the horizontal position of the title will be
215215 centered relative to the axes. If set to 'figure', it will be
216- centered with respect to the figure (faster execution).
216+ centered with respect to the figure (faster execution). The
217+ default value can be set using config.defaults['freqplot.title_frame'].
217218 wrap_phase : bool or float
218219 If wrap_phase is `False` (default), then the phase will be unwrapped
219220 so that it is continuously increasing or decreasing. If wrap_phase is
@@ -1200,14 +1201,17 @@ def nyquist_response(
12001201 be set using config.defaults['nyquist.encirclement_threshold'].
12011202 indent_direction : str, optional
12021203 For poles on the imaginary axis, set the direction of indentation to
1203- be 'right' (default), 'left', or 'none'.
1204+ be 'right' (default), 'left', or 'none'. The default value can
1205+ be set using config.defaults['nyquist.indent_direction'].
12041206 indent_points : int, optional
12051207 Number of points to insert in the Nyquist contour around poles that
12061208 are at or near the imaginary axis.
12071209 indent_radius : float, optional
12081210 Amount to indent the Nyquist contour around poles on or near the
1209- imaginary axis. Portions of the Nyquist plot corresponding to indented
1210- portions of the contour are plotted using a different line style.
1211+ imaginary axis. Portions of the Nyquist plot corresponding to
1212+ indented portions of the contour are plotted using a different line
1213+ style. The default value can be set using
1214+ config.defaults['nyquist.indent_radius'].
12111215 omega_limits : array_like of two values
12121216 Set limits for plotted frequency range. If Hz=True the limits are
12131217 in Hz otherwise in rad/s. Specifying ``omega`` as a list of two
@@ -1539,7 +1543,9 @@ def nyquist_plot(
15391543 ``omega`` as a list of two elements is equivalent to providing
15401544 ``omega_limits``.
15411545 unit_circle : bool, optional
1542- If ``True``, display the unit circle, to read gain crossover frequency.
1546+ If ``True``, display the unit circle, to read gain crossover
1547+ frequency. The circle style is determined by
1548+ config.defaults['nyquist.circle_style'].
15431549 mt_circles : array_like, optional
15441550 Draw circles corresponding to the given magnitudes of sensitivity.
15451551 ms_circles : array_like, optional
@@ -1577,12 +1583,13 @@ def nyquist_plot(
15771583 arrows : int or 1D/2D array of floats, optional
15781584 Specify the number of arrows to plot on the Nyquist curve. If an
15791585 integer is passed. that number of equally spaced arrows will be
1580- plotted on each of the primary segment and the mirror image. If a 1D
1581- array is passed, it should consist of a sorted list of floats between
1582- 0 and 1, indicating the location along the curve to plot an arrow. If
1583- a 2D array is passed, the first row will be used to specify arrow
1584- locations for the primary curve and the second row will be used for
1585- the mirror image.
1586+ plotted on each of the primary segment and the mirror image. If a
1587+ 1D array is passed, it should consist of a sorted list of floats
1588+ between 0 and 1, indicating the location along the curve to plot an
1589+ arrow. If a 2D array is passed, the first row will be used to
1590+ specify arrow locations for the primary curve and the second row
1591+ will be used for the mirror image. Default value is 2 and can be
1592+ set using config.defaults['nyquist.arrows'].
15861593 arrow_size : float, optional
15871594 Arrowhead width and length (in display coordinates). Default value is
15881595 8 and can be set using config.defaults['nyquist.arrow_size'].
@@ -1619,11 +1626,14 @@ def nyquist_plot(
16191626 max_curve_magnitude : float, optional
16201627 Restrict the maximum magnitude of the Nyquist plot to this value.
16211628 Portions of the Nyquist plot whose magnitude is restricted are
1622- plotted using a different line style.
1629+ plotted using a different line style. The default value is 20 and
1630+ can be set using config.defaults['nyquist.max_curve_magnitude'].
16231631 max_curve_offset : float, optional
16241632 When plotting scaled portion of the Nyquist plot, increase/decrease
16251633 the magnitude by this fraction of the max_curve_magnitude to allow
16261634 any overlaps between the primary and mirror curves to be avoided.
1635+ The default value is 0.02 and can be set using
1636+ config.defaults['nyquist.max_curve_magnitude'].
16271637 mirror_style : [str, str] or False
16281638 Linestyles for mirror image of the Nyquist curve. The first element
16291639 is used for unscaled portions of the Nyquist curve, the second element
0 commit comments