We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NamedStateSpace
It is not a function I use a lot, but it seems like the zpk view of linear systems in NamedStateSpace structure does not work. tf does work.
zpk
tf
test = ss([-1 2 3; 0 -2 3; 0 0 -3],[1;2;3],[1 2 3], [0.0]) tf(test) tf(named_ss(test)) zpk(test)
This works (however, tf does not work if all numbers are integers -- e.g., if the D-matrix of test is set to [0], tf fails.).
test
[0]
The following does not work:
zpk(named_ss(test))
The text was updated successfully, but these errors were encountered:
Thanks for the issue, it's closed by #847 and 2036570
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
It is not a function I use a lot, but it seems like the
zpk
view of linear systems inNamedStateSpace
structure does not work.tf
does work.This works (however,
tf
does not work if all numbers are integers -- e.g., if the D-matrix oftest
is set to[0]
,tf
fails.).The following does not work:
The text was updated successfully, but these errors were encountered: