Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit278524e

Browse files
committed
Fix pzmap not showing zeroes due to hardcoded facecolors argument being 'none'
1 parenta007fcc commit278524e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎control/pzmap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ def pzmap(sys, Plot=True, title='Pole Zero Map'):
7979
iflen(poles)>0:
8080
plt.scatter(real(poles),imag(poles),s=50,marker='x')
8181
iflen(zeros)>0:
82-
plt.scatter(real(zeros),imag(zeros),s=50,marker='o',
83-
facecolors='none')
82+
plt.scatter(real(zeros),imag(zeros),s=50,marker='o')
83+
8484
# Add axes
8585
#Somewhat silly workaround
8686
plt.axhline(y=0,color='black')

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp