To label same X axis twice

조회 수: 2 (최근 30일)
seema niran
seema niran 2018년 4월 11일
댓글: Pawel Jastrzebski 2018년 4월 12일
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
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
seema niran 2018년 4월 12일
Sir, it is ok. but what I need is a separate labeling of 0 to 23 for each day section either along or at the top of the x-axis. Thank you
Pawel Jastrzebski
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:

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

카테고리

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