How can we plot a surface using anonymous functions?
fsurf(anonymous_funct)
How do we show contours or level curves with fsurf?
fsurf(f, “ShowContours”, “on”)
How to create a surface using matrices?
We have two vectors x and y.
[X, Y] = meshgrid(x,y)
Z = F(X) + G(Y)
surf(Z)