R/meshgrid.R

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

Try the biwavelet package in your browser

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

biwavelet documentation built on May 2, 2019, 5:10 p.m.