I want to plot a scatter plot with filled markers and make them semi-transparent so when two or more markers overlap, the overlapping area will be more opaque.
I naively thought
sg = scatter(rand(1000,1),rand(1000,1), 'filled');
alpha(0.5)
would work, but it doesn't. Also
set(get(sg, 'Children'), 'FaceAlpha', 0.2)
doesn't work. Any ideas?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…