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

6 次查看(过去 30 天)
the points (2.4, -2.7927) and (2.4, 2.7127)
f(x,y) = 4x + 2y -xy +3x^2 -5y^2 +5

回答(1 个)

Mani Teja
Mani Teja 2019-10-31
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

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by