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

4 lines
71 B
Mathematica
Raw Normal View History

2024-05-13 19:50:21 +00:00
function [] = testGrid()
[X,Y]=meshgrid(1:1:10);
Z=2*X+Y
surf(X,Y,Z)