I want to set a graph with middle tics without number, like the picture. Also i need to enable sides ticks. How can i do it?

 채택된 답변

Adam Danz
Adam Danz 2018년 8월 17일
편집: Adam Danz 2018년 8월 17일

1 개 추천

To turn on 'minor' ticks:
set(gca,'XMinorTick','on')
What's a side tick? Check out all the properties of ticks you can set:

댓글 수: 6

Gabriel Maia
Gabriel Maia 2018년 8월 17일
I want just one minortick between ticks.
Adam Danz
Adam Danz 2018년 8월 17일
편집: Adam Danz 2018년 8월 17일
figure
hA = axes;
set(hA,'XMinorTick','on')
hA.XAxis.MinorTickValues = .05:.1:1
Check out the link I provided to learn how to change the length, direction, etc of all ticks.
Gabriel Maia
Gabriel Maia 2018년 8월 17일
MinorTickValues did not work here, it just showed the default XMinorTick scale in the graph. I think that is the way, but don't know what's wrong on this code.
Adam Danz
Adam Danz 2018년 8월 17일
편집: Adam Danz 2018년 8월 17일
It definitely works. I set them for my example. You'll have to set them with whatever values of xtick you already have.
For example, if your xticks are [0 4 8 12 16] you'll want to set the minor ticks to [ 2 6 10 14]. So you'll need to set the xtick and the minor ticks.
Check out the additional properties to make ticks more visible.
Gabriel Maia
Gabriel Maia 2018년 8월 17일
편집: Gabriel Maia 2018년 8월 17일
I got it now.
ax = gca;
ax.XAxis.MinorTick = 'on';
ax.XAxis.MinorTickValues = -7.5:1:7.5;
I see the problem. You don't need to create another axis. You only need the axis handle of your current axis.
replace
hA = axes
with
hA = gca;
unless you already have your current axis handle available.
Also your minor ticks should be
-7.5 : 2 : 7.5

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

추가 답변 (0개)

카테고리

제품

릴리스

R2017a

태그

질문:

2018년 8월 17일

편집:

2018년 8월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by