Borrar filtros
Borrar filtros

How to find an equation of the tangent line to the curve f(x,y) =0 at the....

8 visualizaciones (últimos 30 días)
Peter Pyrka
Peter Pyrka el 31 de Oct. de 2019
Comentada: darova el 31 de Oct. de 2019
the points (2.4, -2.7927) and (2.4, 2.7127)
f(x,y) = 4x + 2y -xy +3x^2 -5y^2 +5
  3 comentarios
Peter Pyrka
Peter Pyrka el 31 de Oct. de 2019
my question is how I would do this problem in Matlab

Iniciar sesión para comentar.

Respuestas (1)

Mani Teja
Mani Teja el 31 de Oct. de 2019
Hello Peter,
This should help:
syms x y f(x,y)
f(x,y) = 4*x + 2*y -x*y +3*x^2 -5*y^2 +5;
a = f(2.4, -2.7927);
a = vpa(a,4); % Just to make it look better
b = f(2.4, 2.7127) ;
b = vpa(b,4);
Regards
Mani

Community Treasure Hunt

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

Start Hunting!

Translated by