Changing the opacity of a fit line
3 views (last 30 days)
Show older comments
I'm trying to get my fit line to be the same opacity as the scatter points. How can I convert the line color from the way that I have it to the 4D color i.e [0 0 0 0.5] ?
scatter(TDSad.Agemos,TDSad.(measureToAnalyze),'k','v','MarkerEdgeAlpha',0.5)%
scatter(DSSad.Agemos,DSSad.(measureToAnalyze),'m','^','filled')%
[sortedTD, sortItd] = sort(TDSad.Agemos);
p1 = plot(sortedTD,TDall_yfit(sortItd),'LineStyle','--','Color','k','LineWidth', 2,);
p2 = plot(DSSad.Agemos,DSall_yfit,'LineStyle','-','Color','m','LineWidth',2);
1 Comment
Mathieu NOE
on 2 Apr 2021
hello
exactly the sme way as for scatter : , like
p1 = plot(1:10,1:10,'LineStyle','--','Color',[0 0 0 0.5])
Answers (0)
See Also
Categories
Find more on Animation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!