我有一個matlab m文件以便繪製一個積分如下。我想在mathematica中重寫這段代碼,但是我不知道subs()的任何等價函數!有任何身體幫助我嗎?在mathematica中matlab subs()的等價函數
syms x y w;
fun = (-1/(4.*pi)).*log(x.^2+(y-w).^2);
integral = int(fun, w);
res_l = subs(integral, w, -0.5);
res_u = subs(integral, w, 0.5);
res = res_u - res_l;
ezsurf(res, [-1,1]);
對於那些我們誰知道Mathematica但不是Matlab,你可以解釋什麼潛艇應該做什麼?它是下標格式嗎? –
Subs是替代x,y和w等符號變量值的一種方法。以下是文檔http://www.mathworks.com/help/toolbox/symbolic/subs.html – kitchenette