Learn R Programming

RandVar (version 1.2.4)

RealRandVariable: Generating function for RealRandVariable-class

Description

Generates an object of class "RealRandVariable".

Usage

RealRandVariable(Map = list(function(x) {1}), Domain = NULL, Range)

Value

Object of class "RealRandVariable"

Arguments

Map

list of functions forming the map.

Domain

domain of Map: object of class "OptionalrSpace".

Range

range of Map: object of class "Reals".

Author

Matthias Kohl Matthias.Kohl@stamats.de

See Also

RealRandVariable-class

Examples

Run this code
RealRandVariable(Map = list(function(x){x}), Domain = Reals())

## The function is currently defined as
function(Map = list(function(x){1}), Domain = NULL, Range) {
    if(missing(Range)) Range <- Reals()
    if(!is(Range, "Reals"))
        stop("'Range' has to be of class 'Reals'")

    return(new("RealRandVariable", Map = Map, 
               Domain = Domain, Range = Reals()))
}

Run the code above in your browser using DataLab