How to remove quantile lables from x and y axis?

3 次查看(过去 30 天)
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('')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by