How to remove quantile lables from x and y axis?

조회 수: 5 (최근 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('')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by