Multiple Answers From 'solve'
Ältere Kommentare anzeigen
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 Kommentare
Andrew Newell
am 9 Jan. 2012
Yes, we will need to see that string - formatted nicely, please.
Zachary
am 9 Jan. 2012
Zachary
am 9 Jan. 2012
Andrew Newell
am 9 Jan. 2012
Are you trying to solve symbolically for theta4?
Zachary
am 9 Jan. 2012
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 9 Jan. 2012
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 Kommentare
Zachary
am 9 Jan. 2012
Walter Roberson
am 9 Jan. 2012
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 .
Zachary
am 10 Jan. 2012
Kategorien
Mehr zu Common Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!