I am having trouble modeling a state-space model where the states and inputs are multiplied together.

Consider this example:

Xdot = X*sin(u)

This is a simplified example but it covers my problem. Here X represents the state and u the input. They are multiplied together.

How can I separate them into

Xdot= Ax+Bu

My approach was to linearize the model by taking partial derivative with respect to U. But this way the equation will be a constant multiplied by U.

Xdot = Bu

But this way it will not depend on X which I find intuitively not correct.

Can someone give me help?

Similar questions and discussions