We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rlocus
kvect
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
import control as ct g = ct.tf([1,2], [1,2,10]) kvect = ct.rlocus(g)[1] plt.figure() ct.rlocus(g, kvect=kvect);
result:
I'd expect these two to look the same.
This is because axis limits are only calculated when argument kvect is None:
if kvect is None: start_mat = _RLFindRoots(nump, denp, [1]) kvect, mymat, xlim, ylim = _default_gains(nump, denp, xlim, ylim) else: start_mat = _RLFindRoots(nump, denp, [kvect[0]]) mymat = _RLFindRoots(nump, denp, kvect) mymat = _RLSortRoots(mymat)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Example:
result:
I'd expect these two to look the same.
This is because axis limits are only calculated when argument kvect is None:
The text was updated successfully, but these errors were encountered: