How to remove quantile lables from x and y axis?

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');

 Akzeptierte Antwort

the cyclist
the cyclist am 25 Mär. 2017
Bearbeitet: the cyclist am 25 Mär. 2017

0 Stimmen

One way:
xlabel('')
ylabel('')

Weitere Antworten (0)

Kategorien

Mehr zu Functions finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 25 Mär. 2017

Kommentiert:

am 25 Mär. 2017

Community Treasure Hunt

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

Start Hunting!

Translated by