Plotting time series axis time labels

3 次查看(过去 30 天)
Hi All, I'm able to plot nice 3-d data using mesh or surf. I'm labeling the y axis as time per code block below. It looks great, the only problem is y time axis only displays the time at the mid point of the axis (so only one time displayed). How can I increase the density of the time labels so that I see for example 10 times labeled across the axis? Also, it would be great if this axis/labels auto scales (so if I zoom in and now by displayed full scale time is 10 minutes I'd still see 10 (or some number > 1) of labels for time. Thanks for any feedback!
figure('Name','Spectral Time Series Plot');
ax2=mesh(my3dx,XaxisTime,myd3y);
datetick('y','HH:MM:SS','keepticks','keeplimits');
xlabel('WaveNumber');
ylabel('Absorbance');
ylabel('Sample (time)');
zlabel('Absorbance');
axis tight;

采纳的回答

Chad Greene
Chad Greene 2017-10-2
Unfortunately dateticks are not dynamic, meaning if you set the dateticks and then zoom, the ticks don't get updated. You can manually set which ticks you want labeled before calling datetick with 'keepticks', or you can use the dynamic datetick function, which you can get from File Exchange.
  2 个评论
Larry McDermott
Larry McDermott 2017-10-2
Thanks for the quick response, I'll try the File Exchange function!
Larry McDermott
Larry McDermott 2017-10-2
Hi Chad, I tried it and it shows the axis in the "serial date numbers" which were generated from a date/time string using datenum. Looking through the m-file but figured I'd ask if I'm doing something wrong? Thanks for any feedback.
figure('Name','Spectral Time Series Plot'); ax2=mesh(my3dx,XaxisTime,myd3y); %datetick('y','HH:MM:SS'); dynamicDateTicks([], 'hh/mm/ss',[]); xlabel('WaveNumber'); ylabel('Absorbance'); ylabel('Sample (time)'); zlabel('Absorbance'); axis tight;

请先登录,再进行评论。

更多回答(0 个)

类别

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