MATLAB: Question regarding executing auto-correlation

autocorrelation

Hi all,
I have to stationarized my data using auto-correlation to be used in arima models. However, i have trouble getting the codes correct.
data = xlsread('20jun.xlsx');
pv = data; %144 readingfrom 20jun
t= [1:144]; %defined time points
plot(t,pv);
I have 144 data readings, resulting in 144 time point. Any advise will be appreciated. Thanks for the time.

Best Answer

Before plot, put there lines and tell us what it says
size(t) % Don't use a semicolon



size(pv) % Don't use a semicolon
class(t) % Don't use a semicolon
class(pv) % Don't use a semicolon
And I don't see any autocorrelation going on, just reading data from a workbook and plotting it.