Plotting multi-colored line in Matlab
- by Jonas
I would like to plot a line with two-color dashes, say red-blue-red-blue-...
I know I could do it like this:
plot([1,2],[1,2],'r'),
hold on,
plot([1,2],[1,2],'--b')
However, since I need to be able to move the line, among others, it should only have a single handle. How could I do this?