matlab 二元一次函数如何求导

如题所述

第1个回答  2012-04-17
例如你的函数是:f=x^2+y^2;
方式为:
syms x y
diff(f,x,1) %对x求一次导
diff(f,y,1) %对y求一次导
diff(f,x,y) %求全微分
相似回答