MATLAB: SURF 2D. How is possible.

surf

How is that SURF makes 3D plots of 2D data? What data is suited for this? Newbie alert 🙂

Best Answer

MATLAB help is great.
doc surf
Quote: surf(Z) creates a three-dimensional shaded surface from the z components in matrix Z, using x = 1:n and y = 1:m, where [m,n] = size(Z).
Btw, plot does the same thing:
Y = sin(1:10);
plot(Y) % 1D data, 2D plot using the index of the data as missing dimension