x = linspace(0,4*pi,100);y = linspace(0,4*pi,100);[xx,yy] = meshgrid(x,y);zz = sin(xx+sin(yy)) - xx./10;mesh(xx,yy,zz)