MATLAB: Drawing a line

lineplot

I want to draw a line like this
where c=0;
The line have to pass through [5 2]' and [0 0]' points.

Best Answer

line([0 5],[0 2])
Related Question