Calculate 10y returns out of monthly data
1 次查看(过去 30 天)
显示 更早的评论
hey guys,
i have monthly returns (1mil. simulations). Now i want to calculate corresponding 10 year returns. for example vextor x: 0.05 0.02 0.03 0.4 -0.21 ...
what matlab should do now is to calculate: ((1+r(1))*(1+r(2))*...(1+r(120)))-1 and ((1+r(121))*(1+r(122))*...(1+r(240)))-1 and so on...
thx for your help
0 个评论
采纳的回答
Andrei Bobrov
2014-10-24
编辑:Andrei Bobrov
2014-10-24
out = prod(1 + reshape(x,120,[])) - 1;
or
out = accumarray(ceil((1:numel(x))'/120),x(:),[],@(x)prod(1+x)-1);
0 个评论
更多回答(1 个)
Roger Wohlwend
2014-10-24
y = exp(filter(ones(120,1),1,log(1+r)))-1;
y = y(120:end);
2 个评论
Roger Wohlwend
2014-10-24
Oh, my mistake.
y = exp(filter(ones(120,1),1,log(1+r)))-1;
y = y(120:120:end);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Report Generator 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!