Group: | Operators |
See also: | | stack |
Function: | ~ | |
Description: | ~ combines arrays columnwise. |
Usage: | z = x ~ y | |
Input: | ||
x | array | |
y | array | |
Output: | ||
z | array |
matrix(2,3) ~ #(1, 2) ~ #(3, 4)
Contents of _tmp [1,] 1 1 1 1 3 [2,] 1 1 1 2 4
Group: | Operators |
See also: | | stack |