R/crosspoint.r

Defines functions crosspoint

Documented in crosspoint

crosspoint <- function(a1,b1, a2,b2){
  x <- (a1-a2)/(b2-b1)
  y <- a2 + b2*x
  return(cbind(x,y))
}

Try the blmeco package in your browser

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

blmeco documentation built on Dec. 5, 2019, 5:09 p.m.