MATLAB: Draw parabola

parabola computing

Write a Matlab m-file to input three points (x1,y1), (x2,y2) and (x3,y3) in the x-y plane, and to draw the function and output the equation of a parabola passing through these points.
haw can draw?

Best Answer

doc linspace
doc plot
doc ezplot %If you have the symbolic math toolbox
A few pointers.
Related Question