


GE Checks if polytope P is a superset of polytope Q
status = ge(P,Q,Options)
---------------------------------------------------------------------------
DESCRIPTION
---------------------------------------------------------------------------
STATUS = GE(P,Q) returns TRUE (1) if P>=Q (i.e. P is a superset of Q)
USAGE:
P >= Q
ge(P,Q)
ge(P,Q,Options)
---------------------------------------------------------------------------
INPUT
---------------------------------------------------------------------------
P,Q - Polytopes
Options.rel_tol - relative tolerance
Options.abs_tol - absolute tolerance
Options.lpsolver - LP solver to use (see help mpt_solveLP)
Note: If Options is missing or some of the fields are not defined, the default
values from mptOptions will be used
---------------------------------------------------------------------------
OUTPUT
---------------------------------------------------------------------------
status - Logical statement (true if P>=Q, false otherwise)
see also EQ, GT, LE, LT, NE