Multiple Answers From 'solve'
16 次查看(过去 30 天)
显示 更早的评论
I have an equation that I am passing to the 'solve' function. I know for a fact that it has two solutions. It only returns one solution. This is how I'm calling solve:
solve(S)
where S is a string containing the equation. It's pretty ugly but I can provide it if needed. What I need is a way to get that second solution.
5 个评论
采纳的回答
Andrew Newell
2012-1-9
syms theta2 theta4
S=(-4.19*sin(theta2*pi/180)-5.166*sin(theta4*pi/180)+23.3*sin(82.99*pi/180))^2+(-4.19*cos(theta2*pi/180)-5.166*cos(theta4*pi/180)+23.3*cos(82.99*pi/180))^2-24.073^2;
sols = solve(S,theta4);
sols = subs(sols,theta2,73.5);
sols =
[-115.9829194]
[ ]
[-73.90876566]
The first solution, added to 180, gives 64.0170806.
5 个评论
更多回答(1 个)
Walter Roberson
2012-1-9
Take your original equation,
24.073^2 = (-4.19*sin((1/180)*theta2*Pi) - 5.166*sin((1/180)*theta4*Pi) + 23.3*sin(.4610555556*Pi))^2 + (-4.19*cos((1/180)*theta2*Pi) - 5.166*cos((1/180)*theta4*Pi) + 23.3*cos(.4610555556*Pi))^2
and do trig substitutions on it.
24.073^2 = 587.1336560 + 43.29108000*cos((1/180)*theta2*Pi - (1/180)*theta4*Pi) - 195.2540000*cos((1/180)*theta2*Pi-.4610555556*Pi) - 240.7356000*cos((1/180)*theta4*Pi-.4610555556*Pi)
Substitute in any one value for theta2 and the equation becomes one involving constants, and cos() of theta4 converted from degrees to radians. It then becomes obvious that the solution must be periodic over 360 (degrees) and the positive-going and negative-going solutions must be 180 apart.
Thus, all you need from solve() is a single solution, which you can then normalize according to your preferred range, with the other solution in that preferred range 180 apart.
3 个评论
Walter Roberson
2012-1-9
Use vpa() or double() on the expression
Note: above I used Pi with capital-P . In MATLAB you would use pi with lower-case-p .
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!