im constantly getting this error in my matlab code can someone expalin what i should do or how it should be

조회 수: 2 (최근 30일)
  • Variable q4 must be of data type sym. It is currently of type symfun. Check where the variable is assigned a value.
syms x y
g(x,y)=x*y/(x^2+y^2);
fyxx=diff(diff(diff(g,y),x),x);
point=[1.2,3.8];
q4=subs(fyxx,{x,y},point);
  댓글 수: 1
lateef
lateef 2024년 3월 14일
The original question is assign g(x,y)=xy/x^2+y^2 and calculate Fyxx(1.2,3.8) (triple derivative!) and assign the result to q4.

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

답변 (1개)

Walter Roberson
Walter Roberson 2024년 3월 14일
q4 = subs(fyxx(x, y), [x,y], point);

카테고리

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