We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e9526c commit bc08a32Copy full SHA for bc08a32
1 file changed
control/pzmap.py
@@ -228,7 +228,7 @@ def pole_zero_plot(
228
Set the title of the plot. Defaults plot type and system name(s).
229
marker_color : str, optional
230
Set the color of the markers used for poles and zeros.
231
- marker_color : int, optional
+ marker_size : int, optional
232
Set the size of the markers used for poles and zeros.
233
marker_width : int, optional
234
Set the line width of the markers used for poles and zeros.
@@ -370,7 +370,7 @@ def pole_zero_plot(
370
if marker_color is None:
371
color = color_cycle[(color_offset + idx) % len(color_cycle)]
372
else:
373
- color = maker_color
+ color = marker_color
374
375
# Plot the locations of the poles and zeros
376
if len(poles) > 0:
0 commit comments