Comparison Rule
|
Meaning
|
---|---|
“eq”
|
(Default) Matches everything that is equal to scalar or string z.
|
“near”
|
Matches everything that is closest to scalar z for a given TOL.
|
“gt”
|
Matches everything that is greater than scalar z.
|
“lt”
|
Matches everything that is less than scalar z.
|
“geq”
|
Matches everything that is greater than or equal to scalar z.
|
“leq”
|
Matches everything that is less than or equal to scalar z.
|
“not”
|
Matches everything that is not equal to scalar or string z.
|
“range”
|
Matches everything that is in the given range specified in a two-element vector z.
|
f
|
Matches everything that meets the conditions set by this user-defined comparison function.
|