R/yaxis.hy.R

Defines functions yaxis.hy

yaxis.hy <- function(mat){
  #  mat : d by n matrix
  tempmax <- max(mat) ;
  tempmin <- min(mat) ;
  templen <- tempmax-tempmin ;
  return(c(tempmin-0.002*templen, tempmax+0.002*templen)) ;
}
hyochoi/SCISSOR documentation built on July 6, 2022, 6:59 a.m.