Learn R Programming

HistDAWass (version 1.0.4)

WH.bind: Method WH.bind

Description

It attaches two MatH objects with the same columns by row, or the same rows by colum.

Usage

WH.bind(object1, object2, byrow)

# S4 method for MatH,MatH WH.bind(object1, object2, byrow = TRUE)

Arguments

object1

a MatH object

object2

a MatH object

byrow

a logical value (default=TRUE) attaches the objects by row

Value

a MatH object,

See Also

WH.bind.row for binding by row, WH.bind.col for binding by column

Examples

Run this code
# 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