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
set(ax(1),...
'XMinorTick','on',...
'XMinorGrid','on',...
'MinorGridColor',[0 1 0],...
'MinorGridAlpha',0.15,...
'MinorGridLineStyle','-');
set(ax(1).XAxis,...
'TickValues' ,StartDate:EndDate,...
'MinorTickValues',xTimeSpan);
0 Comments
Sign in to comment.