meshgrid: Rectangular grid in two dimensions

Description Usage Arguments Value Author(s) Examples

Description

Replicates the grid vectors xv and yv to generate a full grid

Usage

1
meshgrid (xv, yv)

Arguments

xv

vector of numeric values

yv

vector of numeric values

Value

Returns a list containing the full grid components xv and yv:

x

replicated values of xv

y

replicated values of yv

Author(s)

Tarik C. Gouhier (tarik.gouhier@gmail.com)

Examples

1
2
3
xv=runif(10)
yv=runif(5)
g=meshgrid(xv, yv)

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