필터 지우기
필터 지우기

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

조회 수: 8 (최근 30일)
Peter Pyrka
Peter Pyrka 2019년 10월 31일
댓글: darova 2019년 10월 31일
the points (2.4, -2.7927) and (2.4, 2.7127)
f(x,y) = 4x + 2y -xy +3x^2 -5y^2 +5
  댓글 수: 3
Peter Pyrka
Peter Pyrka 2019년 10월 31일
my question is how I would do this problem in Matlab
darova
darova 2019년 10월 31일
How would you do this on paper?

댓글을 달려면 로그인하십시오.

답변 (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