フィルターのクリア

About draw a timestamp 2-D plot

1 回表示 (過去 30 日間)
C Zeng
C Zeng 2012 年 7 月 31 日
Hello, I want to plot a 2-D figure, x-axis is timestamp, y-axis is some quantity. I wonder does matlab have some templates for it?
If not how to mark the x-axis as timestamp? I want to draw a discrete time, every 10 minutes a unit maybe. Thanks.

回答 (1 件)

Stephanie
Stephanie 2012 年 12 月 31 日
編集済み: Stephanie 2012 年 12 月 31 日
%y=whatever data you want it to be
%x=whatever timestamp you are collecting
x=datenum(x); %you need to convert your timestamp into numeric form
plot(x,y);
datetick('x',0) %look at the support page for datetick. It will show you what matlab date numbers correspond to which formats. (ex: 0=dd:mm:yyyy HH:MM:SS)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by