R/meshgrid.R

Defines functions meshgrid

Documented in meshgrid

meshgrid <-
function(a,b){
  return(list(x=outer(b*0, a, FUN = "+"), y = outer(b, a*0, FUN = "+")))
}

Try the TauP.R package in your browser

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

TauP.R documentation built on May 2, 2019, 3:25 a.m.