![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1800750/image.png)
Info
This question is locked. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Can you help me to solve equation
조회 수: 1 (최근 30일)
이전 댓글 표시
based on the Newton-Raphson method and an initial guess x0=(1,1,1)
x2y2 − z2 = 0.3
x cos y − sin 2z = -0.3
x + eyz = −1.1
댓글 수: 0
답변 (1개)
Shivam Gothi
2024년 10월 30일
As per my understanding, you are trying to find the solution of set of non-linear equations using Newton-Raphson method.
As the third equation given by you is not clear, I am assuming that the equations you are trying to solve are:
x^2 * y^2 - z^2=0.3;
x cos y − sin 2z = -0.3;
x + y*z = -1.1;
I have attached a code snippet which solves the system of non linear equations containing three variables using Newton Raphson method.
I have used it for the above stated set of equation, and attached the screen-shot of its implementation:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1800750/image.png)
This uses the Function “Newton_Raphson” from below attached file exchange:
The function returns the solution of three equations in three variables using the Newton-Raphson method. The inputs are symbolic functions, initial guesses and number of iterations.
Refer to the instructions given in the above mentioned file exchange to get a clear understanding of its usage.
I hope it helps !
댓글 수: 3
John D'Errico
2024년 10월 30일
Please do not do homework assignments for students who make no effort. This teaches the student nothing more than that there is someone out there willing to do their homework.
This does not help the forum, since it convinces the student to continue posting their assignments. It convinces other students to do the same, which actively hurts the forum. And it forces me to watch more diligently to close similar future questions from this student.
This question is locked.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!