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 a007fcc commit 278524eCopy full SHA for 278524e
1 file changed
control/pzmap.py
@@ -79,8 +79,8 @@ def pzmap(sys, Plot=True, title='Pole Zero Map'):
79
if len(poles) > 0:
80
plt.scatter(real(poles), imag(poles), s=50, marker='x')
81
if len(zeros) > 0:
82
- plt.scatter(real(zeros), imag(zeros), s=50, marker='o',
83
- facecolors='none')
+ plt.scatter(real(zeros), imag(zeros), s=50, marker='o')
+
84
# Add axes
85
#Somewhat silly workaround
86
plt.axhline(y=0, color='black')
0 commit comments