I'm plotting two lines, more or less on top of each other. This is fine when you can see the colors, but not on a black and white print.
I have added marks, but due to the data points being take with the same interval the marks are also on top of each other. Is there a way to shift the markers of each added plot, so they are NOT on top on each other.
plot(x(1:3:end),f(x(1:3:end)),'bx',x(1:5:end),f2(x(1:5:end)),'ro')where i.e.x = -pi:0.01:pi; f = @(x)sin(x); f2 = @(x)sin(x);So if you store the data in the same manner it should be a quite easy fix. – militiaOfDeath Jun 5 '12 at 13:29