Returns a 1-column matrix, stacking the columns of x
, a matrix or vector.
Also supports comma-separated inputs similar to the concatenation
function c
.
Examples
vec(1:3)
#> [,1]
#> [1,] 1
#> [2,] 2
#> [3,] 3
vec(matrix(1:6, 2, 3))
#> [,1]
#> [1,] 1
#> [2,] 2
#> [3,] 3
#> [4,] 4
#> [5,] 5
#> [6,] 6
vec(c("hello", "world"))
#> [,1]
#> [1,] "hello"
#> [2,] "world"
vec("hello", "world")
#> [,1]
#> [1,] "hello"
#> [2,] "world"
vec(1:3, "hello", "world")
#> [,1]
#> [1,] "1"
#> [2,] "2"
#> [3,] "3"
#> [4,] "hello"
#> [5,] "world"