- Notifications
You must be signed in to change notification settings - Fork441
-
Hi all! I am little puzzled about the declaration of transfer-functions with control.zpk. The step-responses / impulse-responses of a transfer-function declared with control.zpk seem to unstable, although the poles are in the left-half plane and a bode plot does not show unstable poles. Am I missing something in the following MME? Help would be appreciated! TIA! _import control as ct Declare stable system as zpkGzp = ct.zpk([-5],[-1,-10], gain=4) Declare same system as tfGtf = ct.tf([4,20], [1,11, 10]) Both systems share the same poles and zeros, the difference of both systems is 0.Yet: the Gzp system is instable in simulations while Gtf is stable (as expected)[Tzp, Yzp] = ct.impulse_response(Gzp) |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 1 comment
-
This is a bug. Created issue#1062 to track. |
BetaWas this translation helpful?Give feedback.