powered by
It attaches two MatH objects with the same columns by row, or the same rows by colum.
MatH
WH.bind(object1, object2, byrow)# S4 method for MatH,MatH WH.bind(object1, object2, byrow = TRUE)
# S4 method for MatH,MatH WH.bind(object1, object2, byrow = TRUE)
a MatH object
a logical value (default=TRUE) attaches the objects by row
a MatH object,
WH.bind.row for binding by row, WH.bind.col for binding by column
WH.bind.row
WH.bind.col
# NOT RUN { # binding by row M1<-BLOOD[1:10,1] M2<-BLOOD[1:10,3] MAT<-WH.bind(M1,M2, byrow=TRUE) # binding by col M1<-BLOOD[1:10,1] M2<-BLOOD[1:10,3] MAT<-WH.bind(M1,M2, byrow=FALSE) # }
Run the code above in your browser using DataLab