FIGURE: plot monthly data and only present the years
2 views (last 30 days)
Show older comments
Hi I'm trying to plot monthly data and only present the years on the x-axis. Is this method correct?
startdate = datenum('31-01-2002','dd-mm-yyyy')
enddate = datenum('31-12-2010','dd-mm-yyyy')
dt = linspace(startdate,enddate,108);
data = rand(numel(dt),1);
plot(dt,data)
datetick('x','yyyy','keepticks')
2 Comments
Accepted Answer
Azzi Abdelmalek
on 27 Nov 2012
Edited: Azzi Abdelmalek
on 27 Nov 2012
try this
dt=datenum(2002,(1:120),1)
0 Comments
More Answers (0)
See Also
Categories
Find more on Descriptive Statistics and Visualization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!