How to change the ksdensity transparency

I want to calculate ~10 kernel density estimates and overlay them on top of each other with varying transparency such that all X_f are on the same plot.
figure;
ksdensity(X_f(:,1)); hold on
alpha(1)
ksdensity(X_f(:,2)); hold on
alpha(0.8)
ksdensity(X_f(:,3)); hold on
alpha(0.6)
ksdensity(X_f(:,4)); hold on
alpha(0.4)
Is it possible to change the transparency of kernel density estimates in a similar way/or else how can this be done?

 채택된 답변

José-Luis
José-Luis 2014년 4월 22일

0 개 추천

ksdensity produces a line object. Line objects have no transparency (alpha) property in Matlab. So no, you can't do what you ask in native Matlab.
That being said, you could always look in the file exchange:

추가 답변 (0개)

질문:

2014년 4월 22일

답변:

2014년 4월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by