I have a system of nonlinear(bilinear) equations and would like to linearize it in most automated way. I thought that i could use syms for this task, for sure not only way to do this, could you share your experience how to do this.
syms f1(x1,x2,u1,u2,u3) f2(x1,u1)
f1(x1,x2,u1,u2,u3)= u1x1 + u2(u3-x2);
f2(x1,u1)= u1x1;