Filter löschen
Filter löschen

Random number time series

5 Ansichten (letzte 30 Tage)
Bdayz
Bdayz am 13 Sep. 2016
Kommentiert: Bdayz am 13 Sep. 2016
Hi All,
I will like to generate Independent normally distributed data with linearly
increasing mean from say 2 to 4 and constant standard deviation, say 1.
Thank you.

Akzeptierte Antwort

s.p4m
s.p4m am 13 Sep. 2016
Bearbeitet: s.p4m am 13 Sep. 2016
ln = 100; % length of timeseries
Ts = 1; % timestep
for k = 1:ln
tmp_mean = 2+2*(k-1)/(ln-1); % your linearly increasing mean
tmp_devi = 1; % your constant standard deviation
x(k,1) = random('norm',tmp_mean,tmp_devi,1,1);
end
timeseries = iddata(x,[],Ts);
  1 Kommentar
Bdayz
Bdayz am 13 Sep. 2016
Thanks very much. works perfectly

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Time Series finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by