= MATLAB meshgrid = The '''`meshgrid`''' function creates a rectangular grid. <> ---- == Usage == {{{ x = linspace(-3,3,20); y = linspace(-3,3,20); z = linspace(-3,3,20); [X,Y,Z] = meshgrid(x,y,z); }}} ---- CategoryRicottone