README.md

Monte Carlo Method for Multivariable Integration

A toy R package to teach myself the process of developing R packages. Calculate and visualize Multiple Integral using Monte Carlo method. View Demo

Installation

require(devtools)
devtools::install_github("ddlee96/mcmi")

Usage

mcimi::mcmi(bounds, integrand, constrains, n)
mcmi::visualize(boungds, constrains)
Parameters
1D Definite integral
mcmi(c(0,1), "exp(x)")
Multiple integral
mcmi(c(1,3,-1,4), "x*y+x", c("x^3+y^3<=29", "y>=exp(x)-2")

Limits



ddlee96/mcmi documentation built on May 15, 2019, 1:52 a.m.