Hi,
I was confused by the following line in the fit function:
W = concatenate((Z_dot, X), axis=0) (line 56 in core/learning/edmd.py).
As I understand the EDMD algorithm, W is supposed to be the lifted version of the next predicted state -- why is it the concatenation of the derivative of the lifted Xs (Zs) and X? In particular, it does not seem like this is what https://arxiv.org/pdf/1611.03537.pdf does (referring to pg 8, eqs 16-21) -- it seems like W should be Y_lift. Am I missing something?
Thanks!
Hi,
I was confused by the following line in the fit function:
W = concatenate((Z_dot, X), axis=0) (line 56 in core/learning/edmd.py).
As I understand the EDMD algorithm, W is supposed to be the lifted version of the next predicted state -- why is it the concatenation of the derivative of the lifted Xs (Zs) and X? In particular, it does not seem like this is what https://arxiv.org/pdf/1611.03537.pdf does (referring to pg 8, eqs 16-21) -- it seems like W should be Y_lift. Am I missing something?
Thanks!