How do you use function handles on polynomial functions?

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

Accepted Answer

Walter Roberson
Walter Roberson on 2 Dec 2013
fplot(@(x) x^2 + 3*x +3,[0, 10])

More Answers (0)

Categories

Find more on Structures in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!