Skip to content
Prev 85590 / 398506 Next

How to force a vector to be column or row vector?

Try this:


rbind(c(x))
cbind(c(x))
t(c(x))
On 2/2/06, Michael <comtech.usa at gmail.com> wrote: