필터 지우기
필터 지우기

How can we increase/decrease the number of MinorTicks from the command line?

조회 수: 2 (최근 30일)
INTRODUCTION: Hi, I use the command lines below to generate an arbitrary curve (here sinus) and plot it as a function of the hour and min:
w = 0:pi/100:2*pi;
y1 = sin(w)';
startDate = datenum('09-28-2012 09:00:00 AM');
endDate = datenum('09-28-2012 12:20:00 PM');
x = linspace(startDate,endDate,201);
DATAVECTOR=datevec(x);
h=subplot(1,1,1);
plot(x,y1)
set(h,'XTick',x)
datetick(h,'x','HH','keeplimits')
datetick(h,'x','HH:MM','keepticks')
set(gca)
set(gca,'YTick',-1.4:0.1:1.4)
set(gca,'XMinorTick','on')
set(gca,'YMinorTick','on')
GOAL: 1) Now I want to vary the number of Minor-Ticks of the x-axis between each half-hour, for example, instead of 4 ticks (current) I would wish 5 or 3 ticks.
2) I want also that the YTick be arbitrary chosen, as written in the example above, between -1.4 in steps of 0.1 until 1.4.
PROBLEM: I don't know how to increase/decrease the number of ticks via command line and for any reason the command to generate the Ytick are not working properly: it generates the 0.1-ticks but does not go to +- 1.4.
I wonder if someone could help me to fix the problem with the commands above or suggest a different way to do it.
Thank you in advance for your help
Emerson

채택된 답변

Walter Roberson
Walter Roberson 2012년 10월 4일
There is no documented way to control the number of minor ticks.
  댓글 수: 2
Emerson De Souza
Emerson De Souza 2012년 10월 4일
Thank you Walter. At least I know it is not possible.
Now, why the command line
set(gca,'YTick',-1.4:0.1:1.4)
is not functioning? The range to be displayed in the graph should be -1.4 to 1.4 and not -1 to 1. Do you know how to fix this?
Thank you in advance
Emerson

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

추가 답변 (1개)

Paulo Teixeira
Paulo Teixeira 2014년 9월 19일
편집: Paulo Teixeira 2014년 9월 19일
Hi Walter Roberson,Emerson De Souza and Matt Fig
See function my_XMinorTick
This is my function for this problem.
Best regards,

카테고리

Help CenterFile Exchange에서 Grid Lines, Tick Values, and Labels에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by