distrEx (version 2.6.1)

liesInSupport: Generic Function for Testing the Support of a Distribution

Description

The function tests if x lies in the support of the distribution object.

Usage

# S4 method for DiscreteMVDistribution,numeric
liesInSupport(object, x)
# S4 method for DiscreteMVDistribution,matrix
liesInSupport(object, x)

Arguments

object

object of class "Distribution"

x

numeric vector or matrix

Value

logical vector

Methods

object = "DiscreteMVDistribution", x = "numeric":

does x lie in the support of object.

object = "DiscreteMVDistribution", x = "matrix":

does x lie in the support of object.

See Also

Distribution-class

Examples

Run this code
# NOT RUN {
M <- matrix(rpois(30, lambda = 10), ncol = 3)
D1 <- DiscreteMVDistribution(M)
M1 <- rbind(r(D1)(10), matrix(rpois(30, lam = 10), ncol = 3))
liesInSupport(D1, M1)
# }

Run the code above in your browser using DataCamp Workspace