Accepted Answer

p=polyfit([0 -3 .5],[2 -1 .75],2);
x=-10:.01:10;%whatever you want for x
plot(x,polyval(p,x));

3 Comments

p contains [a,b,c]
If you a satisfied with the answer, you should accept it to close out the question.

Sign in to comment.

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Products

Tags

Community Treasure Hunt

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

Start Hunting!