help me with nonlinear Project

I need to compute this nonlinear equations with Jacobian
x^5 + y^3 * z^4 + 1, x^2 * y * z, z^4 - 1.
Can anyone help me, because non of the examples on mathlab are for this kind of equations....

2 Comments

what do you mean by "... compute this nonlinear equations with Jacobian"?
You want to calculate the Jacobian of it?
So i Insert theese comands
>> syms x1 x2 x3
>> J1 = jacobian([x1^5 + x2^3*x3^4 + 1; x1^2*x2*x3; x3^4-1],[x1;x2;x3])
>> x3=0
How to call the matrix now?
When I call it with
>> J1 = jacobian([x1^5 + x2^3*x3^4 + 1; x1^2*x2*x3; x3^4-1],[x1;x2;x3])
i get
J1 =
[ 5*x1^4, 0, diff(x1^5 + 1, 0)]
[ 0, 0, diff(0, 0)]
[ 0, 0, diff(-1, 0)]
And why do I need inv(J) for x0=(-.01, -.01, -.01)^T???
Thank you verry much for your responces...

Answers (0)

This question is closed.

Asked:

on 15 Jan 2015

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!