cumulative maximum loss code

4 ビュー (過去 30 日間)
Alex
Alex 2020 年 3 月 6 日
コメント済み: Koushik Vemula 2020 年 3 月 16 日
I'm new to Matlab and I'm having trouble with the code for the computation of cumulative maximum loss for a time series. What I need to do is to compute the maximum loss compared to the highest levels of the variable over a period T which is set to 522 days.
Specifically,
.
Thank you for any help

回答 (1 件)

Koushik Vemula
Koushik Vemula 2020 年 3 月 9 日
According to my understanding you have a variable x’ which has ‘n(say) number of values.
You would like to find the value of
where the value 522 is T’ value.
You can do it in the following manner
1-(x(t))/max(x(1:T+1))
We have ‘+1’ as matlab index starts from ‘1
  6 件のコメント
Alex
Alex 2020 年 3 月 13 日
Thank you, what about doing that in loop for all the observations of the time series?
Koushik Vemula
Koushik Vemula 2020 年 3 月 16 日
for i = T+1:length(x)
sol(i)=1-(x(i)/max(x(i-T:i)))
end
Here we are iterating from T+1 (index should be greater than 0) to max of x.
This will give you your desired result

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

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by