how to make a transparent histogram in matlab » from the desk of stinkpot

how to make a transparent histogram in matlab » from the desk of stinkpot

瀏覽:998
日期:2025-11-17
to make a partially transparent histogram in matlab, use the facealpha setting. for instance, the following code produces the histogram seen above: figure hist(data1,20) h = findobj(gca,’Type’,'patch’); set(h,’FaceColor’,'r’,'EdgeColor’,'w’,'facealpha’,0....看更多