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

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.

댓글을 달려면 로그인하십시오.

답변 (1개)

Benjamin Schwabe
Benjamin Schwabe 2012년 6월 11일

0 개 추천

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

카테고리

도움말 센터File Exchange에서 Systems of Nonlinear Equations에 대해 자세히 알아보기

태그

질문:

2012년 6월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by