The fplot3
function requires that the input functions to plot are function handles. The
ezplot3
function accepted either function handles or
character vectors.
For example, use fplot3(@(t) sin(t),@(t) cos(t),@(t) t)
instead of ezplot3('sin(t)','cos(t)','t')
.