Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the following matlab plot to draw multiple points

plot(ydep, xvar, '.', 'Markersize', 3);

Here ydep and xvar are matrix of 1024x300, so there will be 300 dotted lines being plotted in random color. What my question is how to specify the color for each of 300 lines in the parameter? I try to use a loop to plot each 'line' but that's pretty slow

for n=1:300
  plot(ydep(:, n), xvar(:, n), '.', 'Markersize', 3, 'color', linecolors(n, :));
  hold on;
end

where linecolors defined the color for each of the line.

share|improve this question
I do not understand. In your loop, you are just plotting the same y and x matrices over and over. any way, if you plot everything in one command, then Matlab will select the colors for you. You are making life hard for yourself. Let Matlab do it. – Nasser Nov 24 '12 at 4:26
Sorry for that. I have modified the code and I plot each individual 'line' in each iteration. By the way, I need to control the color myself since the random colors give the poor contrast and the figure is not accepted by the journal I submitted to. – user1285419 Nov 24 '12 at 4:38
1  
If you do not want to do something like plot(x',y') so that Matlab generate the colors for you, then the following 2 threads show solutions for controling your own colors for multiplots. See if they help mathworks.com/matlabcentral/newsreader/view_thread/324410 and mathworks.com/matlabcentral/newsreader/view_thread/324383 May be ColorOrder might be what you want. See mathworks.com/help/matlab/ref/axes_props.html#ColorOrder – Nasser Nov 24 '12 at 4:55
Just want to be clear what the problem is: So the problem is that your current solution works for you, but it is slow? Is that all the problem? Or is it you do not like the colors you are generating? If it just becuase it is slow, then how slow is it? – Nasser Nov 24 '12 at 5:07
yes, the problem is it is running too slow with my solution. If I run it only once, it is not that bad. But I have to run the code for thousand times and also I need to tweak the parameter so to obtain the best figures (in some cases, I need even bigger matrix 5000x1000 for the lines). I just want to know if there is any way to make it run faster (as fast as that with one plot function). Thanks – user1285419 Nov 24 '12 at 5:16
show 1 more comment

1 Answer

As mentioned in the comment, the solution is to set the ColorOrder. Then you can just plot it as a matrix with matlabs regular high performance.

Here is an example of how to set the ColorOrder

http://www.mathworks.com/matlabcentral/answers/19815-explicitly-specifying-line-colors-when-plotting-a-matrix

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.