Skip to content

Commit

Permalink
autotune: use pole->poles and zero->zeros
Browse files Browse the repository at this point in the history
api changed
  • Loading branch information
bresch committed Aug 28, 2024
1 parent 0f52256 commit 9cc941f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autotune/autotune.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ def updateTfDisplay(self, a_coeffs, b_coeffs):
def plotPolesZeros(self):
if not self.is_system_identified:
return
poles = self.Gz.pole()
zeros = self.Gz.zero()
poles = self.Gz.poles()
zeros = self.Gz.zeros()
if not self.pz_plot_refs:
ax = self.figure.add_subplot(3,3,6)
plot_ref = ax.plot(poles.real, poles.imag, 'rx', markersize=10)
Expand Down

0 comments on commit 9cc941f

Please sign in to comment.