Changing the opacity of a fit line

3 views (last 30 days)
Sophie Blankenheim
Sophie Blankenheim on 1 Apr 2021
Commented: Mathieu NOE on 2 Apr 2021
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
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])

Sign in to comment.

Answers (0)

Categories

Find more on Animation in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!