Linear model structure
Closed this issue · 1 comments
lucas-mior commented
Hello, can sysidentpy be used to obtain a linear system from input data? If so, how?
wilsonrljr commented
Hey @lucas-mior . Yes, SysIdentPy can do that. To obtain a linear model structure, just make sure to set the degree of the basis function equal to 1.
basis_function = Polynomial(degree=1)
You should notice that even in cases where the degree of the basis function is higher than 1, the final model might be linear. But, to make sure you are only looking for linear models, I suggest you to set the degree of the basis function equal to 1.