phd-scripts/Unpublished/XFEM/1D_Solver/testGrid.m

4 lines
No EOL
71 B
Matlab

function [] = testGrid()
[X,Y]=meshgrid(1:1:10);
Z=2*X+Y
surf(X,Y,Z)