Hi Kevin, Sorry.it is not Bt ? A and B are two independent Matrices with equal number rows and different number of columns.
dim (A) [1] 30380 104 dim(B) [1] 30380 63 I want to combine both A and B to matrix C wheredim(C) [1] 30380 167 So I got the answer C<-cbind(A,B) Thanks and regards, Pankaj Regards, Pankaj On Tue, Apr 12, 2011 at 5:36 PM, Kevin E. Thorpe <kevin.tho...@utoronto.ca>wrote: > On 04/12/2011 10:54 AM, pankaj borah wrote: > >> I have two matrices A and B >> >> dim (A) >>> >> [1] 30380 104 >> >> dim(Bt) >>> >> >> [1] 30380 63 >> >> I want to combine both A and B to matrix C where >> >>> dim(C) >>> >> [1] 30380 167 >> >> How do I do that ? >> >> > Assuming that Bt is the transpose of B and you want C = [A|Bt] you could > do: > > C <- cbind(A,t(B)) > > >> Regards, >> >> Pankaj Barah >> Department of Biology, >> Norwegian University of Science& Technology (NTNU) >> Realfagbygget, N-7491 >> >> [[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. >> > > > -- > Kevin E. Thorpe > Biostatistician/Trialist, Knowledge Translation Program > Assistant Professor, Dalla Lana School of Public Health > University of Toronto > email: kevin.tho...@utoronto.ca Tel: 416.864.5776 Fax: 416.864.3016 > [[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.