You can't combine everything into one single plot function.
What you can do is combine different plots via using hold on/off
E.g plot(x1,y1,'-','color',[0 0 1]) hold on plot(x2,y2, '-', 'color', [1 0.4 0.6]) hold off
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!