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

2 ビュー (過去 30 日間)
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 件のコメント
Satyajeet Sasmal
Satyajeet Sasmal 2015 年 11 月 19 日
You could use a handle to the plot function.
h = plot(cfTestBEFORENoOutliers,'r-',XTestBEFORE,YTestBEFORE,'o',outliersTestBEFORE,'r*','predobs');
h.LineWidth = 8;

サインインしてコメントする。

回答 (2 件)

William Truong
William Truong 2019 年 5 月 28 日
編集済み: William Truong 2019 年 5 月 28 日
Use:
h = plot(cfTestBEFORENoOutliers,'r-',XTestBEFORE,YTestBEFORE,'o',outliersTestBEFORE,'r*','predobs');
set(h,'LineWidth',8)

Cagatay Demirci
Cagatay Demirci 2016 年 10 月 12 日
doesn't work!

カテゴリ

Help Center および File ExchangeProbability Distributions and Hypothesis Tests についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by