How to remove quantile lables from x and y axis?

3 ビュー (過去 30 日間)
Hydro
Hydro 2017 年 3 月 25 日
コメント済み: Hydro 2017 年 3 月 25 日
Hello all,
I am producing a qqplot of two variables (see example) however, i see X-quantile and Y-quantile poping up on my figure automatically. Is there a way to not show them.
x=randn(10,1);
y=x+10;
qqplot(x,y);
I tried all of the below but that didnt work.
set(gca,'XTickLabel',{});
xticklabel('off')
set(gca,'XTickLabel',[]);
set(gca,'visible','off');

採用された回答

the cyclist
the cyclist 2017 年 3 月 25 日
編集済み: the cyclist 2017 年 3 月 25 日
One way:
xlabel('')
ylabel('')
  1 件のコメント
Hydro
Hydro 2017 年 3 月 25 日
it worked. Many thanks

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by