问答题 用surf,mesh绘制曲面z=2x2+y2
【正确答案】x=-3:0.1:3:
   y=-3:0.1:3;
   [x,y]=meshgrid(x,y);
   Z=2*X^2+Y^2:
   surf(X,Y,Z)
   使用mesh绘图
   mesh(X,Y,Z)
【答案解析】