MATLAB: How do you plot a data set with black crosses and a red line connecting them

colour

plot(t,ensemble,'–r')

Best Answer

hL=plot(randn(10,1),'r+-','markeredgecolor','k');
Related Question