some notes
% simulate deterministic trending process clear;clc; e = randn(1,1000); alpha = 0.1; t = [1:1000]; yt = alpha*t+e; plot(yt); yt1 = -alpha*t+e; figure; plot(yt1);