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: ~ stack

Function: |
Description: | combines arrays rowwise.

Usage: z = x | y
Input:
x n x p matrix
y m x p matrix
Output:
z (n+m) x p matrix

Example:
matrix(2,2) | #(1, 2)' | #(3, 4)'

Result:
Contents of _tmp

[1,]     1   1
[2,]     1   1
[3,]     1   2
[4,]     3   4



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