0% found this document useful (0 votes)
13 views2 pages

Ejericios

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views2 pages

Ejericios

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

clear all

clc
close all

syms x y

h1 = log(x^2 * y^2) -x*y - 1;


h2 = x^2 - y^3 - 4

F = [h1 h2];
J = jacobian(F);

F = matlabFunction(F,'vars',{[x,y]})
J = matlabFunction(J,'vars',{[x,y]})

h1 = matlabFunction(h1)
h2 = matlabFunction(h2)

P0 = [-1.5 1.2]
delta = 1e-4
epsilon = 1e-6
m = 500

r = newdim(F,J,P0,delta,epsilon,m)

hold on
grid on
fimplicit(h1,[-5 5 -5 5])
fimplicit(h2,[-5 5 -5 5])
David Andres Osorio Sierra19:00
No estoy en el grupo perdón :v
Jacobo Zapata Rojas19:01
https://forms.gle/6JtZN13ey6u1ZCZx5
https://chat.whatsapp.com/KJE082zCGUcBzkDLPhX5FI
clear all
clc
close all

syms x y

h1 = log(x^2 * y^2) -x*y - 1;


h2 = x^2 - y^3 - 4

F = [h1 h2];
J = jacobian(F);

F = matlabFunction(F,'vars',{[x,y]})
J = matlabFunction(J,'vars',{[x,y]})

h1 = matlabFunction(h1)
h2 = matlabFunction(h2)

P0 = [-1.5 1.2]
delta = 1e-4
epsilon = 1e-6
m = 500
r = newdim(F,J,P0,delta,epsilon,m)

hold on
grid on
fimplicit(h1,[-5 5 -5 5])
fimplicit(h2,[-5 5 -5 5])

You might also like