I would like to plot multiple lines with MATLAB and do it so, that markers would be different in every line. I know that with colours this would be achieved with ColorSet
ColorSet
The following also helps.
function testfig
x=0:0.1:10; y1=sin(x); y2=cos(x); m = ['h','o','*','.','x','s','d','^','v','>','<','p','h']; plot(x,y1,[m(1)]) hold on; plot(x,y2,[m(2)])