colVec {fBasics} | R Documentation |
Creates a column or row vector from a numeric vector.
colVec(x) rowVec(x)
x |
a numeric vector. |
The functions colVec
and rowVec
transform a vector into
a column and row vector, respectively. A column vector is a matrix
object with one column, and a row vector is a matrix object with one
row.
## Create a numeric Vector: x = rnorm(5) ## Column and Row Vectors: colVec(x) rowVec(x)