how to plot date and time on x axis and data on yaxis from excel sheet using MATLAB

4 次查看(过去 30 天)
Capture.JPG
help plot IST on Xaxis and Z on Yaxis?

回答(1 个)

KSSV
KSSV 2019-1-4
编辑:KSSV 2019-1-4
Read about readtable
T = readtable('BookP.xlsx') ;
plot(T.(1),T.(2)) % Pick the index you want T.(i)
% plot whole data
T = readtable('BookP.xlsx') ;
plot(T.(1),T{:,2:end}) ;
str = properties(T) ;
legend(str)
  3 个评论
KSSV
KSSV 2019-1-4
[num,txt,raw] = xlsread('BookP.xlsx') ;
thedates = datetime(raw(2:end,1)) ;
str = txt(1,2:end) ;
plot(thedates,num)
legend(str)

请先登录,再进行评论。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by