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
It seems that t_eval is ignored when simulating a system with nstates=0.
t_eval
nstates=0
The bug seems to be located at:
python-control/control/iosys.py
Lines 1767 to 1777 in 3b5f199
Instead, the following lines are expected to be used, I think:
Lines 1798 to 1825 in 3b5f199
The text was updated successfully, but these errors were encountered:
handle t_eval for static systems in input_output_response (addresses p…
04ef02d
…ython-control#742)
Good catch @hyumo. The first check for nstates == 0 was redundant, so deleting it fixed the problem. I also added some unit tests to catch this error.
nstates == 0
This issue will close when #743 is merged.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
It seems that
t_eval
is ignored when simulating a system withnstates=0
.The bug seems to be located at:
python-control/control/iosys.py
Lines 1767 to 1777 in 3b5f199
Instead, the following lines are expected to be used, I think:
python-control/control/iosys.py
Lines 1798 to 1825 in 3b5f199
The text was updated successfully, but these errors were encountered: