MATLAB meshgrid
The meshgrid function creates a rectangular grid.
Contents
Usage
x = linspace(-3,3,20); y = linspace(-3,3,20); z = linspace(-3,3,20); [X,Y,Z] = meshgrid(x,y,z);
The meshgrid function creates a rectangular grid.
Contents
x = linspace(-3,3,20); y = linspace(-3,3,20); z = linspace(-3,3,20); [X,Y,Z] = meshgrid(x,y,z);
MATLAB/MeshGrid (last edited 2025-12-17 19:23:13 by DominicRicottone)