필터 지우기
필터 지우기

How to: xtick visibility

조회 수: 1 (최근 30일)
Hello kity
Hello kity 2013년 1월 16일
Hi
how can i make xtick line visible: example, at 6 it is visible, but where there is data it is not...

채택된 답변

José-Luis
José-Luis 2013년 1월 16일
편집: José-Luis 2013년 1월 16일
figure(1);
aH = axes;
hist(randn(1,1000));
set(aH,'TickDir','out');
Alternatively:
figure(2);
aH = axes;
hist(randn(1,1000));
h = findobj(aH,'Type','patch');
set(h,'facealpha',0.5)
  댓글 수: 2
Hello kity
Hello kity 2013년 1월 16일
편집: Hello kity 2013년 1월 16일
first one did it, not what i was asking but lines below the axis is also fine :)
thank you
José-Luis
José-Luis 2013년 1월 16일
My pleasure.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Identification에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by