checkPolytopeStatus: checkPolytopeStatus check if the polytope has solution or not

Description Usage Arguments Value Examples

View source: R/checkPolytopeStatus.R

Description

checkPolytopeStatus check if the polytope has solution or not

Usage

1

Arguments

A

the matrix of inequality A.x<=b

b

the vector A.x<=b

C

the matrix of equality C.x=v (default NULL for no equality)

v

the vector of equality C.x=v (default NULL for no equality

Value

print a message to tell if the polygon is ok or not

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
n <- 20
A1 <- -diag(n)
b1 <- as.matrix(rep(0,n))
A2 <- diag(n)
b2 <- as.matrix(rep(1,n))
A <- rbind(A1,A2)
b <- rbind(b1,b2)
X0 <- checkPolytopeStatus(A,b)

#this one is empty
C <- matrix(c(1,rep(0,n-1)),1)
v <- 3
X0 <- checkPolytopeStatus(A,b,C,v)

Irstea/cpgsR documentation built on Jan. 25, 2020, 5:36 p.m.