可能重复:
快速计算 R 中的双积分
来自布劳恩和默多克的问题,蒙特卡洛模拟:
doubleintegral: 积分(从 0 到 1) 积分(从 0 到 1) fct'n: cos(xy) I-constants: dxdy
对于只有“dx”的积分,我使用类似的东西:
integrand <- function(x)
{
exp(x)
}
integrate(integrand, lower = 1, upper = pi) $value
谁能给我一个提示,如何在 R-Code 中编写双积分?