x=linspace(-5,5,100);y=linspace(-6,6,200);[xx,yy]=meshgrid(x,y);zz=xx.*yy;mesh(xx,yy,zz);%surface(xx,yy,zz)shading flat