Learn R Programming

ranlip (version 1.0.1)

ranlip.Init: Initialization of the internal variables

Description

Function for initialing the internal variables. Int must be called only once before any other method.

Usage

ranlip.Init(dim, left, right)

Arguments

dim

The dimension

left

An array of size dim which determine the domain of p: left|i <= x|i <= right|i

right

An array of size dim which determine the domain of p: left|i <= x|i <= right|i

Value

output

No return value, called to initialise the internal variables.

Examples

Run this code
# NOT RUN {
    dim<-3
	left<-c(0,0,0)
	right<-c(1,1,1)
	ranlip.Init(dim, left, right);
	
	ranlip.FreeMem();
  
# }

Run the code above in your browser using DataLab