MATLAB: Plotting curve in matlab

plotting

Hi Everyone,
I want to plot this curve in matlab like this,
plot(of_traffic, block_Pb,'*r');
But i also want to have a continuous curve below these marked points. Any help guys??

Best Answer

Try
plot(of_traffic, block_Pb,'*r-');
to draw lines between the points.
Related Question