Matrix of date and number to plot

I have a array matrix of only 2 columns: 1st col is all date (datenum), 2nd col is all number. If I would like to plot a graph that y-axis is number and x-axis is datestring like (03-Mar-2011), should I convert the array matrix to cell matrix? and convert the datenum to string by datedisp?

 채택된 답변

David Young
David Young 2011년 3월 5일

4 개 추천

It's simpler just to leave the data as it is and use datetick to set the axis annotations on your graph. Like this:
plot(data(:,1), data(:,2));
datetick('x', 'dd-mmm-yyyy');

댓글 수: 2

Paulo Silva
Paulo Silva 2011년 3월 5일
you are correct, +1 vote
Hello Blower
Hello Blower 2011년 3월 6일
thank a lot

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

추가 답변 (0개)

카테고리

도움말 센터File 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