Nothing
.pkgglobalenv <- new.env(parent=emptyenv())
#<<BEGIN>>
ndvar <- function(n)
#NAME mc.control
#TITLE Sets or Gets the Default Number of Simulations.
#DESCRIPTION
# Sets or retrieves the default number of simulations.
#KEYWORDS misc
#INPUTS
#{n}<<Number of simulations.>>
#DETAILS
#\samp{ndvar()} gets and \samp{ndvar(n)} sets the default number of simulation in the 1D simulations
#or the number of simulation in the variability dimension in the 2D simulations.</>
#\samp{ndunc()} gets and \samp{ndunc(n)} sets the number of simulations in the uncertainty dimension
#in the 2D simulations.</>
#\samp{n} is rounded to its ceiling value.</>
#The default values when loaded are 1001 for \samp{ndvar} and 101 for \samp{ndunc}.
#VALUE
#The current value, AFTER modification if \samp{n} is present (!= \samp{options}).
#EXAMPLE
#(oldvar <- ndvar())
#(oldunc <- ndunc())
#mcstoc(runif,type="VU")
#ndvar(12)
#ndunc(21)
#mcstoc(runif,type="VU")
#ndvar(oldvar)
#ndunc(oldunc)
#CREATED 08-01-25
#--------------------------------------------
{
if(!exists("mc.control", envir=.pkgglobalenv))
assign("mc.control",list(nsv=1001,nsu=101),envir=.pkgglobalenv )
x <- get("mc.control", envir=.pkgglobalenv)
if(!is.list(x) || is.null(x$nsv) || is.null(x$nsu))
assign("mc.control",list(nsv=1001,nsu=101),envir=.pkgglobalenv )
if(!missing(n)){
if (n > 0) x$nsv <- ceiling(n)
else stop("Invalid n")
assign("mc.control",x, envir=.pkgglobalenv)}
return(x$nsv)}
#<<BEGIN>>
ndunc <- function(n)
#ISALIAS ndvar
#--------------------------------------------
{
if(!exists("mc.control", envir=.pkgglobalenv))
assign("mc.control",list(nsv=1001,nsu=101),envir=.pkgglobalenv )
x <- get("mc.control", envir=.pkgglobalenv)
if(!is.list(x) || is.null(x$nsv) || is.null(x$nsu))
assign("mc.control",list(nsv=1001,nsu=101),envir=.pkgglobalenv )
if(!missing(n)){
if (n > 0) x$nsu <- ceiling(n)
else stop("Invalid n")
assign("mc.control",x, envir=.pkgglobalenv)}
return(x$nsu)}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.