To label same X axis twice
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
0 Kommentare
Antworten (1)
Pawel Jastrzebski
am 11 Apr. 2018
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 Kommentare
Pawel Jastrzebski
am 12 Apr. 2018
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:
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!