フィルターのクリア

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

6 ビュー (過去 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 Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by