Variable q4 has an incorrect value.

조회 수: 4 (최근 30일)
lateef
lateef 2024년 3월 14일
답변: Walter Roberson 2024년 3월 14일
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})
  댓글 수: 1
lateef
lateef 2024년 3월 14일
does anyone see whrere i have an incorrect value because i keep getting that error message

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

채택된 답변

Walter Roberson
Walter Roberson 2024년 3월 14일
syms x y
g(x,y) = x*y/(x^2+y^2)
g(x, y) = 
dyxx = diff(diff(diff(g(x,y),y),x),x)
dyxx = 
q4 = subs(dyxx,{x,y},{1.2,3.8})
q4 = 

추가 답변 (0개)

카테고리

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