How to identify coupling coefficients in a coupled system of equations #301
-
I have a system of coupled van der pol oscillators.
I want to get the values of the coefficients but whenever I use pySINDy, the coefficients of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There is no need to disambiguate: just write your equations above as (beta1 -alpha1) x1 - beta1 x2 and similar for the second equation. Then they have the form you want. The only way to disambiguate alpha1 and beta1 is using the fact that the coefficient of x2 in the first equation is beta1, so you can infer alpha1 from the coefficient of the x1 term. |
Beta Was this translation helpful? Give feedback.
There is no need to disambiguate: just write your equations above as (beta1 -alpha1) x1 - beta1 x2 and similar for the second equation. Then they have the form you want. The only way to disambiguate alpha1 and beta1 is using the fact that the coefficient of x2 in the first equation is beta1, so you can infer alpha1 from the coefficient of the x1 term.