Language Reference |
Concatenation Operator, Horizontal: || |
The horizontal concatenation operator (||) produces a new matrix by horizontally joining matrix1 and matrix2. The matrices must have the same number of rows, which is also the number of rows in the new matrix. The number of columns in the new matrix is the number of columns in matrix1 plus the number of columns in matrix2.
For example, the following statements produce the matrix c, shown in Figure 23.4:
a = {1 1 1, 7 7 7}; b = {0 0 0, 8 8 8}; c = a||b; print c;
For character operands, the element size in the result matrix is the larger of the two operands. For example, the following statements produce a matrix f which has elements of size 2, which are shown in Figure 23.5:
d = {A B C, D E F}; e = {"GH" "IJ", "KL" "MN"}; f = d||e; print f;
You can use the horizontal concatenation operator when one of the arguments has no value. For example, if X has not been defined and Y is a matrix, X||Y results in a new matrix equal to Y.
Copyright © SAS Institute, Inc. All Rights Reserved.