Commit d558260a authored by StevenPuttemans's avatar StevenPuttemans

fixing GT and GE comparison symbol

parent 7409f21e
......@@ -289,8 +289,8 @@ Compares elements of two matrices.
:param cmpop: Flag specifying the relation between the elements to be checked:
* **CMP_EQ:** ``a(.) == b(.)``
* **CMP_GT:** ``a(.) < b(.)``
* **CMP_GE:** ``a(.) <= b(.)``
* **CMP_GT:** ``a(.) > b(.)``
* **CMP_GE:** ``a(.) >= b(.)``
* **CMP_LT:** ``a(.) < b(.)``
* **CMP_LE:** ``a(.) <= b(.)``
* **CMP_NE:** ``a(.) != b(.)``
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment