How to plot multiple Xaxis Label| Unit in Hour and Time of the day? Both XLabel at the bottom
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi Coder, May I know how to plot double Xaxis Label. In addition, both the Xlabel will be at the bottom and tick should be align, atleast. I know there are several example in the net. However, I fail to reproduce it according to my requirement. I really appreciate for any hint.
Yaxis = rand(1,8); %4 reading per day at 0930,1300, 1500, 1800
Xaxis_TimeHour = [9 13 15 18 33 37 39 42];
% If time start from zero, the reading in two will be at 9,13,15,18,33,37,39,42
Xaxis_TimeofDay = [0900 1300 1500 1800 0900 1300 1500 1800];
figure;
scatter (Xaxis_TimeHour ,Yaxis);
xlim([0 48])
ylim([0 1])
tick = 0:4:48;
set(gca, 'XTick', tick)
set(gca, 'XTickLabel', arrayfun(@num2str, tick, 'UniformOutput', false))
set(gca, 'XMinorTick', 'off')
set(gca, 'TickDir', 'out')
set(b,'Color','none');
a=axes('Position',[.1 .2 .8 .7]); % I dont now how to efficiently positioned the sub-Xaxis Label~
0 Kommentare
Antworten (1)
dbmn
am 12 Jul. 2017
You could do something like this:
ax1 = gca;
ax2 = axes('Position',ax1.Position,...
'XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none');
Siehe auch
Kategorien
Mehr zu Axis Labels finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!