R/joint.R

Defines functions joint

joint <-
function(S,b1,m,bm)
{
if (!is.null(m)){
S1<-rbind(S,m)
b2<-c(b1,bm)
}
else 
{
S1<-S
b2<-b1
}
return(list(S1,b2))
}

Try the intpoint package in your browser

Any scripts or data that you put into this service are public.

intpoint documentation built on May 29, 2017, 8:59 p.m.