Skip to content
New issue

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

Format output print #54

Open
mrx23dot opened this issue Nov 13, 2024 · 1 comment
Open

Format output print #54

mrx23dot opened this issue Nov 13, 2024 · 1 comment

Comments

@mrx23dot
Copy link

mrx23dot commented Nov 13, 2024

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?

@mrx23dot
Copy link
Author

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'.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant