To label same X axis twice
이전 댓글 표시
Sir, I have hourly data to plot. My plot show the days in X axis as shown below. Is there any method to divide each day to show 24 hours too.
답변 (1개)
Pawel Jastrzebski
2018년 4월 11일
You can certainly add minor ticks and show them on the grid but I'm not sure if there's an easy way to label them. In other words, you'll get the tick and the grid lines but not the 1 through 24 labels.
See example below:
% RANDOM DATA - 2 days x 24hrs
StartDate = datetime(2018,1,1,0,0,0);
EndDate = datetime(2018,1,2,23,0,0);
NoOfHours = hours(EndDate-StartDate)+1;
xTimeSpan = StartDate:hours(1):EndDate;
y = rand(1,NoOfHours).*randi([10,50],1,NoOfHours);
f(1) = figure;
ax(1) = gca();
p(1) = plot(xTimeSpan,y,'.k');
grid on
% Grid settings
set(ax(1),...
'XMinorTick','on',...
'XMinorGrid','on',...
'MinorGridColor',[0 1 0],...
'MinorGridAlpha',0.15,...
'MinorGridLineStyle','-');
% x-grid values
set(ax(1).XAxis,...
'TickValues' ,StartDate:EndDate,...
'MinorTickValues',xTimeSpan);
The output:

댓글 수: 2
seema niran
2018년 4월 12일
Pawel Jastrzebski
2018년 4월 12일
I'm afraid that off-the-box Matlab doesn't offer a capability to add labels to the minor ticks.
Potential workaround would be to use the:
To add the minor ticks to the plot, but you will have to specify the (x,y) coordinates for every label.
Or alternatively, present your data in a different orientation by swapping the x-axis with the y-axis. Then you could use Matlab's:
카테고리
도움말 센터 및 File 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!