how to tick out yearly?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
davit petraasya
am 6 Mai 2016
Kommentiert: davit petraasya
am 6 Mai 2016
Hi
Does anyone knows how to tick out yearly? I am using set(gca,'TickDir','out'); it is working but my ticks is appearing in every 10 years. I need ticks out yearly.
So how do I tick out yearly?
Thanks!
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 6 Mai 2016
Look at this example
d=datenum('01-01-2015'):datenum('01-01-2035');
y=log(d);
plot(d,y)
a=datevec(d);
[ii,jj]=unique(a(:,1));
set(gca,'xtick',d(jj))
datetick('x','yyyy','keepticks')
7 Kommentare
Weitere Antworten (0)
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!