Can I set MarkerFaceColor to part of the data points?

2 Ansichten (letzte 30 Tage)
Xingwang Yong
Xingwang Yong am 8 Dez. 2020
Kommentiert: Walter Roberson am 8 Dez. 2020
plot(1:10,1:10,'s')
Can I set MarkerFaceColor to red for point 1,2,3 while leave the other points unchanged?
I tried in interactive figure editor, it seems this is impossible.

Akzeptierte Antwort

Star Strider
Star Strider am 8 Dez. 2020
Yes!
figure
plot(1:10, 1:10, 's')
hold on
plot((1:3), (1:3), 'sr','MarkerFaceColor','r')
hold off
.
  9 Kommentare
Star Strider
Star Strider am 8 Dez. 2020
As always, my (our) pleasure!
Walter Roberson
Walter Roberson am 8 Dez. 2020
Ah, on desktop changing the MarkerHandle.FaceColorData to a 4 x N uint8 array gives a warning about wrong data. If you change it to a 4 x 1 uint8 array, then it does affect what is drawn.
MATLAB Online did not give me the warning message, but ignored the 4 x N data anyhow.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Performance finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by