Variable q4 has an incorrect value.
4 ビュー (過去 30 日間)
古いコメントを表示
the original question states assign g(x,y)=xy/x^2+y^2 and calculate fyxx(1.2,3.8) (tripe derivative!) and assign the result to q4
syms x y
g(x,y)=x*y/(x^2=y^2)
q4=subs(diff(diff(g(x,y),y),x),{x,y},{1.2,3.8})
採用された回答
Walter Roberson
2024 年 3 月 14 日
syms x y
g(x,y) = x*y/(x^2+y^2)
dyxx = diff(diff(diff(g(x,y),y),x),x)
q4 = subs(dyxx,{x,y},{1.2,3.8})
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
