dominated: Rows domination of a matrix by a vector

View source: R/dominated.R

dominatedR Documentation

Rows domination of a matrix by a vector

Description

indicates which rows of the matrix Y are dominated by the vector (row) x

Usage

dominated(x, Y)

Arguments

x

: row vecteur

Y

: matrix

Value

D : vector of booleans

Author(s)

Alban de Lavenne, Fabrice Zaoui

Examples

# Definition of the parameters
Y <- matrix(rexp(200), 100, 2)
x <- Y[1,]
# Call the function
res <- dominated(x, Y)


caRamel documentation built on Sept. 11, 2024, 7:01 p.m.