calculate annualized Standard deviation for data that consists of several years

1 回表示 (過去 30 日間)
Locks
Locks 2013 年 4 月 21 日
hi,
I tried to compute the annualized standard deviation for data which consists of data from 8 complete years. is there a given formula to compute the annualized std deviation?
all I have found is this:
s = std(X)

採用された回答

Tobias
Tobias 2013 年 4 月 22 日
There is no annualized standard deviation, however, all matlab processes can be used only on parts of your data, so you could manually limit for std deviation calculation to only account for year 1, year 2 etc.
You did not specify how your data is stored, so I'm going to assume that it is a vector.
data =
1
2
3
4
5
6
Say 1 to 3 is year 1, 4 to 6 is year 2.
std_year1 = std(data(1:3,:)
The correct syntax is: data(rows, columns) where a single colon simply means all.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by