我正在寻找一个计算双积分的java库,而不必嵌套它们。 我已经找到了一个允许我执行以下操作的库:
Integral of x*x*{integral of y*y} for x between 0 and 1 and for y between x and 5
我必须首先解决内积分然后才能解决外积分。如果
,这样可以正常工作 f(x,y) = x^2 * y^2 can be seperated into two functions, g(x) = x^2 and h(y) = y^2.
但我需要整合的内容如下:
Integral of e^((x-y)^2) for x between 5 and 10 and y between 3 and 7
是否有一个允许我调用此类内容的库
Integrate (e^((x-y)^2), {x,5,10}, {y,3;7})
我需要将它作为一个java库而不是外部工具,因为整个代码应该最好作为库导出并在Android手机上使用。