How can I create a vector of rolling Standard Deviations

2 ビュー (過去 30 日間)
Nico
Nico 2014 年 7 月 21 日
コメント済み: Nico 2014 年 7 月 21 日
Hi !
I'am sure this is an easy question for most of you...
I have a timeseries 'T' and I wanted to convert this into a vector 'V' of rolling Standard deviations. So every element of 'V' is the Std of the previous 30 elements of 'T'. The first thirty elements of 'V' are NaN then, right?
Could someone pleas help me with this problem?
Thanks, Nico

採用された回答

Shashank Prasanna
Shashank Prasanna 2014 年 7 月 21 日
It is preferred if you give it a shot first and then seek help,
w = 30;
y = NaN(100,1)
x = randn(100,1);
for ii = w+1:100
y(ii,1) = var(x(ii-w:ii-1,1));
end
The first 30 need not be NaN, you can make them zero if you prefer.
  1 件のコメント
Nico
Nico 2014 年 7 月 21 日
Thank you - that helps !

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by