'MarkerFaceColor' according to y value

23 visualizzazioni (ultimi 30 giorni)
aneps
aneps il 13 Nov 2022
Risposto: David Hill il 13 Nov 2022
Is it possible to set the 'MarkerFaceColor' of the x y plot accroding to y value? I want matlab automatically choose accroding to any scale for eg. lowerst value from blue to highest value to red.

Risposte (2)

Walter Roberson
Walter Roberson il 13 Nov 2022
No it is not possible with any documented method (maybe with undocumented methods).
The workaround is to not place markers in your plot() call, and instead
pointsize=10;
shape = 's';
hold on
scatter(x, y, pointsize, y, shape, 'filled')
hold off
If you want the edge color to be different than the face color then you will need to pass in options.
Note that most markers are drawn completely by edge and setting face color does not affect them.

David Hill
David Hill il 13 Nov 2022
x = linspace(0,3*pi,200);
y = cos(x) + rand(1,200);
sz = 25;
c = y/max(y)*10;
scatter(x,y,sz,c,'filled')
hold on;
plot(x,y)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by