how to use datetick?

3 Ansichten (letzte 30 Tage)
pruth
pruth am 12 Apr. 2016
Kommentiert: pruth am 13 Apr. 2016
hi,....i hve a file...first column is date and time second is data.file attached i using following code..it showing me error...i dont know why.and more over i want date tick at regular 3 month interval...not randomly...
x= vcdmean(:,1);
y = vcdmean(:,2);
plot(x,y,'.')
datetick('x', 'mmm YYYY')

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 12 Apr. 2016
Bearbeitet: Azzi Abdelmalek am 12 Apr. 2016
q=datevec(x)
[~,ii]=unique(q(:,1:2),'rows')
a=q(ii,:)
a=a(1:3:end,:)
xt=datenum(a)
plot(x,y,'.')
set(gca,'xtick',xt)
datetick('x', 'mmm YYYY','keepticks')
  1 Kommentar
pruth
pruth am 13 Apr. 2016
accepted .....thanks...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by