Greater or equal predicate operation
rop = mps_greaterequal( op1, op2 )
Overloaded usage:
rop = op1 >= op2
Scilab matrix of boolean
multi-precision or Scilab matrices or scalars
Compare each elements of op1
to
op2
and set the corresponding element
of the boolean matrix rop
to True if it's greater or equal
False otherwise.
Compare each elements of op1
to
op2
and set the corresponding element
of the boolean matrix rop
to True if it's greater
or equal False otherwise.
Overloaded Scilab greater or equal comparison.
Currently op1
and op2
must be of
the same size. Support for comparing a matrix with a single scalar is not
implemented yet.