FaceColor changes automatically in a for loop

20 Ansichten (letzte 30 Tage)
guohua
guohua am 25 Aug. 2016
Beantwortet: Walter Roberson am 25 Aug. 2016
I find that the facecolor changes automatically when I use plot in a for loop.
base_color = colormap(lines(10));
x = 1:100;
figure
for i = 1:10
y1 = i*ones(1,length(x));
y2 = i*ones(1,length(x))+0.5;
hold on
plot(x,y1,'LineWidth',1.5,'MarkerFaceColor',base_color(i,:));
plot(x,y2,'LineWidth',1.5,'MarkerFaceColor',base_color(i,:));
end
hold off
It should be the same color for each two lines, but it's not. How can I plot the lines using the designated colors in 'base_color'?
I find not only the 'plot' function, but other functions like 'histogram' will be also like this.
If anyone can help, many thanks!
  1 Kommentar
Walter Roberson
Walter Roberson am 25 Aug. 2016
Which MATLAB version are you using, and which operating system?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

KSSV
KSSV am 25 Aug. 2016
plot(x,y1,'LineWidth',1.5,'MarkerFaceColor',base_color(i,:));
In the above line the color which you are giving MATLAB is not taking it. So MATLAB is giving color on its own. You have to mention the color you want. Eg:
plot(x,y1,'color','b','LineWidth',1.5); % plot is blue
plot(x,y1,'color',base_color(i,:),'LineWidth',1.5); % in your case
  1 Kommentar
guohua
guohua am 25 Aug. 2016
Yes, it works! I have made such a stupid mistake... Thank you very much!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 25 Aug. 2016
I was able to reproduce this on R2016a in OS-X.
You have a few bugs in your code:
  • You are not requesting that markers be drawn. Markers are not drawn unless you specify a marker style either implicitly with a linespec such as '*' or explicitly with 'MarkerStyle'
  • You are not specifying that the line color should be 'none': default with hold on in R2014b and later is to use the next color in sequence;
  • You are specifying marker face color, not a marker edge color; and
  • You are not specifying that the edge color should be 'none': default is the same as the line color; and
  • You are not specifying a marker that needs much filling. Marker edge color dominates for small markers.
Possibly what you are really wanting to do is specify the Color (line color) instead of the marker face color.

Kategorien

Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by