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 an operator for elementwise logical operation (and). If the condition is false 0 is returned, otherwise 1.

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

Example:
(#(3,4,5)<4) &&(#(5,4,3)<4)

Result:
Contents of _tmp

[1,]     0
[2,]     0
[3,]     0



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