'MarkerFaceColor' according to y value

10 次查看(过去 30 天)
aneps
aneps 2022-11-13
回答: David Hill 2022-11-13
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.

回答(2 个)

Walter Roberson
Walter Roberson 2022-11-13
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 2022-11-13
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)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by