フィルターのクリア

Plot data with date and time as the x axis

62 ビュー (過去 30 日間)
Amir Hosein Shokouhy
Amir Hosein Shokouhy 2022 年 3 月 4 日
編集済み: Cris LaPierre 2022 年 3 月 7 日
Hello,
Can anyone help me plot this table data? I want to have the date and time as x - axis and the other variables as 6 differnent plots all in the same
figure.
Thanks,
Amir

採用された回答

Cris LaPierre
Cris LaPierre 2022 年 3 月 4 日
Read the table in as a table using readtable. You will want to make sure column 1 is read in as a datetime. This 'should' happen automatically, but may depend on your version of MATLAB. Once in MATLAB, you can just plot using the datetime variable as your x input. As a datetime, it will automatically show date and time.
You can use xtickformat function to modify the display format of the datetime values.
See more info here.
  3 件のコメント
Cris LaPierre
Cris LaPierre 2022 年 3 月 7 日
編集済み: Cris LaPierre 2022 年 3 月 7 日
xlsx_name = 'C:\\Air Temperature\MQLoad (1).xlsx'
tab = readtable(xlsx_name);
stackedplot(tab,'XVariable','Var1')
If that doesn't work, please share your spreadsheet. You can attach it to your post using the paperclip icon.
Amir Hosein Shokouhy
Amir Hosein Shokouhy 2022 年 3 月 7 日
It's working now, thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by