properties of 'qqplot' function?

20 ビュー (過去 30 日間)
Fercho_Sala
Fercho_Sala 2021 年 6 月 1 日
コメント済み: Star Strider 2021 年 6 月 2 日
Hello, How is possible to change the marker size, line properties among other parameters of the 'qqplot' function ? , like the next example?
tab7=uitab('Title','daily number of layers');
ax7=axes(tab7);
sgtitle(tab7, 'Daily number of layers');
S=cellfun('length',locs);
~isnan(S);
qq=qqplot(S); % using Children ???
title('');
ylabel(['Number of layers LT 24h, date: ',R(1).Info.Name(1:8)],'FontSize',9,'FontName','Arial','color','default');
xlabel('');
xticks('');
thanks.

採用された回答

Star Strider
Star Strider 2021 年 6 月 1 日
The qqplot function creates 3 line objects. It is possible to modify each one by addressing it specifically —
load gas % Use Documentation Example
figure
hqqp = qqplot(price1);
hqqp(1).MarkerSize = 20; % Data Plot
hqqp(2).LineWidth = 5; % Reference Mid
hqqp(3).Color = 'g'; % Reference Ends
.
  2 件のコメント
Fercho_Sala
Fercho_Sala 2021 年 6 月 2 日
@Star Strider Thank you !
Star Strider
Star Strider 2021 年 6 月 2 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by