Changing the opacity of a fit line

1 visualización (últimos 30 días)
Sophie Blankenheim
Sophie Blankenheim el 1 de Abr. de 2021
Comentada: Mathieu NOE el 2 de Abr. de 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 comentario
Mathieu NOE
Mathieu NOE el 2 de Abr. de 2021
hello
exactly the sme way as for scatter : , like
p1 = plot(1:10,1:10,'LineStyle','--','Color',[0 0 0 0.5])

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Power and Energy Systems en Help Center y File Exchange.

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by