MATLAB - 3D Plotting and Visualization
Consider this MATLAB code:
What shape will the 3D plot display?
[X,Y] = meshgrid(0:2, 0:2);
Z = X.^2 + Y.^2;
surf(X,Y,Z);
What shape will the 3D plot display?
