control.phase_crossover_frequencies #1089
Replies: 3 comments 4 replies
|
It got two warning. |
4 replies
|
@alittlepinetree The values in There is an issue to track work about not showing the warnings in this case: #1105 |
0 replies
|
As noted above, the warning messages have been fixed in #1105. Closing this discussion, but reopen if you still have questions or think there are issues. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
When I used this function to calculate the phase crossover frequencies, it didn't work.
`import control
import matplotlib.pyplot as plt
G = control.tf([200.0], [1.0, 21.0, 20.0, 0.0])
x_omega, x_gain = control.phase_crossover_frequencies(G)
print(x_omega)`
All reactions