Dear fellows,

I am a novice in R. I would like to combine a matrix and a vector. Assume
that we have the matrix a and the vector b with same length of column.

a<-matrix(seq(1:10),nrow=2,ncol=5,byrow=TRUE)
a=
1    2    3    4    5
6    7    8    9   10

b<-t(c(11,12,13,14,15))
b=
11   12   13   14   15

Then, I want to combine a and b as follows.

c=
1    2    3    4    5
6    7    8    9   10
11  12  13  14  15

If you teach me to easily combine the matrix and the vector, I will greatly
appreciate you. Thank  you.

Regards,
Wonsang


-----
--
Wonsang You
Special Lab Non-Invasive Brain Imaging
Leibniz Institute for Neurobiology
http://www.ifn-magdeburg.de
-- 
View this message in context: 
http://r.789695.n4.nabble.com/How-to-combine-matrix-and-vector-tp2541797p2541797.html
Sent from the R help mailing list archive at Nabble.com.

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to