fixing GT and GE comparison symbol

This commit is contained in:
StevenPuttemans 2014-08-18 13:33:40 +02:00
parent 7409f21e9f
commit d558260a8e

View File

@ -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(.)``