From d558260a8e9aa25a391e521c454d15941f456942 Mon Sep 17 00:00:00 2001 From: StevenPuttemans Date: Mon, 18 Aug 2014 13:33:40 +0200 Subject: [PATCH] fixing GT and GE comparison symbol --- modules/gpu/doc/per_element_operations.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gpu/doc/per_element_operations.rst b/modules/gpu/doc/per_element_operations.rst index 2670ba3233..8022fdeb93 100644 --- a/modules/gpu/doc/per_element_operations.rst +++ b/modules/gpu/doc/per_element_operations.rst @@ -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(.)``