Solving Nonlinear Equations - 3 equations 3 unknowns

I'm trying to solve a set of equations containing trigonometric functions, and am having a hard time figuring out what to do. I have the following equations:
A*cos(y)*cos(z) + B*cos(y)*sin(z) - C*sin(y) = D
A*(sin(x)*sin(y)-sin(z)*cos(x)) + B*(sin(x)*sin(y)*sin(z)+cos(x)*cos(z)) + C*sin(x)*cos(y) = E
A*(cos(x)*sin(y)*cos(z)+sin(x)*sin(z)) + B*(cos(x)*sin(y)*sin(z)-sin(x)*cos(z)) + C*cos(x)*cos(y) = F
I know the values for A, B, C, D, E, and F, and am trying to solve for x, y, and z. I have found numerous solution suggestions online, but none have worked. Any suggestions, or even just an example that I could base my solution off of would be appreciated.

1 Kommentar

Is that attempting to calculate the rotation angles that result in a particular final position? If so then my recollection is that there are multiple solutions.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Benjamin Schwabe
Benjamin Schwabe am 11 Jun. 2012

0 Stimmen

You might be able to use a newton iteration for this problem. The MATLAB command is fmincon (you require the optimization toolbox). Before you have to reformulation the problem into a minimzation problem, which is quite easy, just write everything on the left side and apply a norm to this vector.
You might also try fsolve or fzero.
However, if there are multiple solutions (and it surely looks like that), consider restraining the solution space e.g. x,y,Z have to be within -pi to +pi. Then you have to use fmincon.
In case these methods do not work, you can choose one variable arbitraily and still obtain at least one solution.
Hope that helps, Ben

Kategorien

Tags

Gefragt:

am 11 Jun. 2012

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by