The fsurf
function requires that the input functions to plot are function handles. The
ezsurf
function accepted either function handles or
character vectors.
For example, use fsurf(@(x,y) sin(x)+cos(y))
instead of
ezsurf('sin(x)+cos(y)')
.