Clear Filters
Clear Filters

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

4 views (last 30 days)
Capture.JPG
help plot IST on Xaxis and Z on Yaxis?

Answers (1)

KSSV
KSSV on 4 Jan 2019
Edited: KSSV on 4 Jan 2019
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 Comments
KSSV
KSSV on 4 Jan 2019
[num,txt,raw] = xlsread('BookP.xlsx') ;
thedates = datetime(raw(2:end,1)) ;
str = txt(1,2:end) ;
plot(thedates,num)
legend(str)

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!