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 个)

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