Closed himanshupant24 closed 1 year ago
Hey @himanshupant24 , as I sent you by mail, the lag definition "[[1, 2], [1, 2]]" is the list of lags of each input. The first list, [1, 2], represents the lags of the first input x1 like x1(k-1) and x1(k-2). The second list is the same for the second input x2(k-1) and x2(k-2). If you have another input, x3 for example, the xlag should be something like this [[1, 2], [1, 2], [1, 2]].
You can check more details on the docs:
http://sysidentpy.org/examples/defining_lags/ http://sysidentpy.org/examples/multiple_inputs_example/
I'll close this issue because I think this issue has been addressed I'll focusing on #111 to help you out.
If you have any questions, just let me know.
ylag=2,
xlag=[[1, 2], [1, 2]], # defining lags for multiple inputs
basis_function=basis_function,