Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Group: Operators
See also: >= <= == <

Function: >
Description: > is a operator for elementwise comparison of arrays (greater). If the condition is false 0 is returned, otherwise 1.

Usage: z = y > x
Input:
x array
y array
Output:
z array

Note:

Example:

#(3,4) > #(3,2)
#(3,4) .> #(3,4) 
x = #(1/0, -1/0, NaN, 0)
x > x'
Result:

Contents of _tmp
[1,]        0 
[2,]        1 
Contents of _tmp
[1,]        0 
[2,]        0 
Contents of _tmp
[1,]        0        1        0        1 
[2,]        0        0        0        0 
[3,]        0        0        0        0 
[4,]        0        1        0        0 

Group: Operators
See also: >= <= == <

Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

(C) MD*TECH Method and Data Technologies, 17.8.2000