Sketch the graph using matlab
이전 댓글 표시
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
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
카테고리
도움말 센터 및 File Exchange에서 Chemistry에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
