how do I change linewidth of line of best fit and of the confidence limits, when using 'predobs'

1 visualización (últimos 30 días)
how do I change linewidth of line of best fit and of the confidence limits, when using 'predobs' See code below plot(cfTestBEFORENoOutliers,'r-',XTestBEFORE,YTestBEFORE,'o',outliersTestBEFORE,'r*','predobs'), hold on
  1 comentario
Satyajeet Sasmal
Satyajeet Sasmal el 19 de Nov. de 2015
You could use a handle to the plot function.
h = plot(cfTestBEFORENoOutliers,'r-',XTestBEFORE,YTestBEFORE,'o',outliersTestBEFORE,'r*','predobs');
h.LineWidth = 8;

Iniciar sesión para comentar.

Respuestas (2)

William Truong
William Truong el 28 de Mayo de 2019
Editada: William Truong el 28 de Mayo de 2019
Use:
h = plot(cfTestBEFORENoOutliers,'r-',XTestBEFORE,YTestBEFORE,'o',outliersTestBEFORE,'r*','predobs');
set(h,'LineWidth',8)

Cagatay Demirci
Cagatay Demirci el 12 de Oct. de 2016
doesn't work!

Categorías

Más información sobre Probability Distributions and Hypothesis Tests en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by