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

3 visualizzazioni (ultimi 30 giorni)
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 Commento
Satyajeet Sasmal
Satyajeet Sasmal il 19 Nov 2015
You could use a handle to the plot function.
h = plot(cfTestBEFORENoOutliers,'r-',XTestBEFORE,YTestBEFORE,'o',outliersTestBEFORE,'r*','predobs');
h.LineWidth = 8;

Accedi per commentare.

Risposte (2)

William Truong
William Truong il 28 Mag 2019
Modificato: William Truong il 28 Mag 2019
Use:
h = plot(cfTestBEFORENoOutliers,'r-',XTestBEFORE,YTestBEFORE,'o',outliersTestBEFORE,'r*','predobs');
set(h,'LineWidth',8)

Cagatay Demirci
Cagatay Demirci il 12 Ott 2016
doesn't work!

Categorie

Scopri di più su Probability Distributions and Hypothesis Tests in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by