MATLAB: How do you use function handles on polynomial functions

function handlematlab function

I get an error message on this….
fplot(@x^2 + 3*x +3,[0, 10])

Best Answer

fplot(@(x) x^2 + 3*x +3,[0, 10])