필터 지우기
필터 지우기

plot chart with the respective date on the x axis

조회 수: 3 (최근 30일)
Locks
Locks 2013년 3월 24일
Hi,
I have a data set with two columns, in the second there are daily historical data which I would like to plot. This is no problem. In the first column of the data set, there is the respective data which should be displayed on the x-axis.
The thing is that the whole data set consists of more than 5000 rows and I do not want to have displayed 5000 dates on the x-axis but just the years, as follows
2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
In excel that is no big deal but I do not know how to do that in Matlab

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 24일
편집: Azzi Abdelmalek 2013년 3월 24일
Look at this example
dates=datenum('01/01/2000'):datenum('01/01/2009')
y=sin(0.01*dates)
plot(dates,y)
d=datevec(dates)
[a,idx]=unique(d(:,1),'first')
set(gca,'xtick',dates(idx),'xticklabel',a)
  댓글 수: 11
Locks
Locks 2013년 3월 24일
that's working, thanks!
Locks
Locks 2013년 3월 24일
sorry, I have just seen now that there is still one problem. the date should be displayed at 1.1. of each year not at the end of a year, how can I change that?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Will Forfang
Will Forfang 2013년 3월 24일
Sounds like you need to adjust the "ticks" of your x-axis.

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by