RandVariable {RandVar} | R Documentation |
Generating function for RandVariable-class
Description
Generates an object of class "RandVariable"
.
Usage
RandVariable(Map = list(function(x){}), Domain = NULL, Range = NULL)
Arguments
Map |
list of functions forming the map. |
Domain |
domain of |
Range |
range of |
Value
Object of class "RandVariable"
Author(s)
Matthias Kohl Matthias.Kohl@stamats.de
See Also
Examples
(R1 <- RandVariable())
Map(R1)
Domain(R1)
Range(R1)
Map(R1) <- list(function(x){ceiling(x)}, function(x){floor(x)})
Domain(R1) <- Reals()
Range(R1) <- Naturals()
R1
Map(R1)
length(R1)
R2 <- R1
Domain(R2) <- Naturals()
compatibleDomains(R1, R2)
Domain(R2) <- NULL
compatibleDomains(R1, R2)
Domain(R2) <- EuclideanSpace(dimension = 1)
compatibleDomains(R1, R2)
Domain(R2) <- EuclideanSpace(dimension = 2)
compatibleDomains(R1, R2)
## The function is currently defined as
function(Map = list(function(x){ }), Domain = NULL, Range = NULL) {
return(new("RandVariable", Map = Map, Domain = Domain, Range = Range))
}
[Package RandVar version 1.2.3 Index]