>> [x,y] = meshgrid([-pi:0.02*pi:pi]);>> subplot(1,2,1)>> surfc(x,y,x.*y)>> subplot(1,2,2)>> surfc(x,y,sin(x.*y))>> axis equal