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.
yandxmatrices 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:26plot(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:55slow? 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