Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

lot chart with the respective date on the x axis starting with the first date for the first data point

1 vue (au cours des 30 derniers jours)
Locks
Locks le 24 Mar 2013
Clôturé : MATLAB Answer Bot le 20 Août 2021
dates=datenum(VIXdate)
y=VIX
plot(dates,y)
d=datevec(dates)
d=d(:,1)
[a,idx]=unique(d)
ylabel('VIX');
set(gca,'xtick',dates(idx),'xticklabel',a)
set(gca,'Box','off')
I have the following code, which shows me a graph with the historic values for a vector called VIX. On the x-axis, I have the years from the vector VIXdate displays, which is working perfectly. The only problem I am facing is, that the dates are displayed for the last day of each year, but I would like to see the date at the point where the first date (01.01) of each year is. How do I have to change the code?
  3 commentaires
Locks
Locks le 24 Mar 2013
perfect, sorry haven't seen it, but now it's working

Réponses (0)

Cette question est clôturée.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by