Learn R Programming

RSEIS (version 2.1-6)

meshgrid: Create a mesh grid like in Matlab

Description

Creates 2D matrices for accessing images and 2D matrices

Usage

meshgrid(a, b)

Arguments

a
x vector components
b
y vector components

Value

  • xlength(y) by length(x) matrix of x indicies
  • ylength(y) by length(x) matrix of y indicies

Details

returns outer product of x-compnents and y-components for use as index arrays

Examples

Run this code
meshgrid(1:5, 1:3)

Run the code above in your browser using DataLab