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
Printing output should be human readable:
model = system_identification() print(model)
and model specific,
e.g. ARMAX with IC=None output should look something like:
print(f''' G {m.G}, H {m.H}, na {m.na}, nb {m.nb}, nc {m.nc}, nd {m.nd}, nf {m.nf}, theta {m.theta}, ts {m.ts}, Vn {m.Vn}, NUMERATOR {m.NUMERATOR}, NUMERATOR_H {m.NUMERATOR_H}, DENOMINATOR {m.DENOMINATOR}, DENOMINATOR_H {m.DENOMINATOR_H}, Yid {m.Yid} ''')
maybe an equation in picture too?
The text was updated successfully, but these errors were encountered:
Also Table 8.1 documentation is wrong:
AttributeError: 'ARMAX_MIMO_model' object has no attribute 'nd'. AttributeError: 'ARMAX_MIMO_model' object has no attribute 'nf'.
Sorry, something went wrong.
No branches or pull requests
Printing output should be human readable:
and model specific,
e.g. ARMAX with IC=None output should look something like:
maybe an equation in picture too?
The text was updated successfully, but these errors were encountered: