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?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Exploration and Visualization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!