mc_valor_promedio_3d
Compute the triple integral of a function f(x,y,z) over a specified rectangular box using Monte Carlo sampling, returning the estimated value with a confidence level.
Instructions
Estimate the triple integral of f(x,y,z) over the box [x_a,x_b]×[y_a,y_b]×[z_a,z_b].
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| N | No | ||
| x_a | Yes | ||
| x_b | Yes | ||
| y_a | Yes | ||
| y_b | Yes | ||
| z_a | Yes | ||
| z_b | Yes | ||
| seed | No | ||
| func_str | Yes | ||
| precision | No | ||
| nivel_confianza | No |