The fcontour
function requires that the input function to
plot is a function handle. The ezcontour
function accepted
either a function handle or character vector.
For example, use fcontour(@(x,y) sin(x)+cos(y))
instead of
ezcontour('sin(x)+cos(y)')
.