发布网友 发布时间:2022-03-25 19:55
共1个回答
热心网友 时间:2022-03-25 21:24
可以用solve函数求解。(注意,该函数在高版本中使用有一点问题)
syms y1 y2 h1 h2 l1 l2
syms x1 x2
[x1,x2]=solve(y1+y2*x2-h2*x*2^2-2*h1*x1+(l1+l2)*x2==0,y2+y1*x1-h1*x1^2-2*h2*x2+(l1+l2)*x1==0,x1,x2)
上述代码在matlab2016a通过。答案有点长。