fixing GT and GE comparison symbol
authorStevenPuttemans <steven.puttemans@kuleuven.be>
Mon, 18 Aug 2014 11:33:40 +0000 (13:33 +0200)
committerStevenPuttemans <steven.puttemans@kuleuven.be>
Mon, 18 Aug 2014 11:33:40 +0000 (13:33 +0200)
modules/gpu/doc/per_element_operations.rst

index 2670ba3..8022fde 100644 (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(.)``