数学中matlab的subs()的等价函数

时间:2012-05-15 05:25:38

标签: matlab wolfram-mathematica

我有一个matlab m文件,以便绘制如下的积分。我想在mathematica中重写这段代码,但我不知道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]);

1 个答案:

答案 0 :(得分:5)

使用ReplaceAll函数实现等效的Mathematica操作,可以写成如下。

Integrate[Sin[x], x] /. x -> 3
(*Out:  -Cos[3] *)

如果要替换多个值,可以这样做:

Integrate[Sin[x], x] /. x -> # & /@ { 7, 5, 8, 11, 13}
(* Out: {-Cos[7], -Cos[5], -Cos[8], -Cos[11], -Cos[13]} *)

或者像Mr.Wizard建议的更紧凑和有效的方法:

Integrate[Sin[x], x] /. x -> {7, 5, 8, 11, 13}