Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/fortran/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wolfram mathematica 是否有一种在实际域中进行符号集成的通用方法,就像maple所做的那样[假设不起作用]_Wolfram Mathematica - Fatal编程技术网

Wolfram mathematica 是否有一种在实际域中进行符号集成的通用方法,就像maple所做的那样[假设不起作用]

Wolfram mathematica 是否有一种在实际域中进行符号集成的通用方法,就像maple所做的那样[假设不起作用],wolfram-mathematica,Wolfram Mathematica,Integrate[m^2/((x-m^2)^2+y^2),m] mathematica给了我一个复值的reuslt,但是maple 17给了我我想要的,见附图 我试着使用假设,但不起作用 在MMA中,是否有一种像maple一样在实际域中进行集成的通用方法 Todd Gayley(参见:)提出的这个wrap-bulit-in命令能起到作用吗 Message[args___] := Block[{$inMsg = True, result}, "some code here"; result =

Integrate[m^2/((x-m^2)^2+y^2),m]

mathematica给了我一个复值的reuslt,但是maple 17给了我我想要的,见附图

我试着使用假设,但不起作用

在MMA中,是否有一种像maple一样在实际域中进行集成的通用方法

Todd Gayley(参见:)提出的这个wrap-bulit-in命令能起到作用吗

Message[args___] := Block[{$inMsg = True, result},
"some code here";
result = Message[args];
"some code here";
result] /; ! TrueQ[$inMsg]`
也许复杂的赋值结果的原因是积分过程中涉及的功率计算,所以也许我真正需要的是在实域中进行符号功率计算的一般方法

谢谢:)