Sketch the graph using matlab

2 ビュー (過去 30 日間)
Ta Duc
Ta Duc 2021 年 7 月 4 日
コメント済み: Ta Duc 2021 年 7 月 5 日
Draw the graph of f and its tangent plane at the given point. (Use your computer algebra system both to compute the partial derivatives and to graph the surface and its tangent plane.) Then zoom in until the surface and the tangent plane become indistinguishable. f(x, y)=[xy sin(x-y)]/[1+x^2+y^2], and the given point(1, 1, 0)

回答 (2 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 7 月 4 日
Start with fimplicit(@(x, y)...)
  2 件のコメント
Ta Duc
Ta Duc 2021 年 7 月 4 日
Could u pls specify your answer 😀
Ta Duc
Ta Duc 2021 年 7 月 4 日
i'm a chemical engineering so i'm not good at this.

サインインしてコメントする。


Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 7 月 4 日
f=@(x, y)(x.*y.*sin(x-y)./(1+x.^2+y.^2));
syms x y
dFxy = diff(f,x)+diff(f, y);
fimplicit3(f); hold on; fimplicit(dFxy, 'k', 'linewidth', 2)
shg
  2 件のコメント
Ta Duc
Ta Duc 2021 年 7 月 5 日
Can u explain for me why the code you give me showed the different graph with the answer key?
Ta Duc
Ta Duc 2021 年 7 月 5 日

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeChemistry についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by