I have a matrix with percantage values where every row represents an individual observation. I need to compute the cumulative product where these values correspond to the same subscript. I tried to use the accumarray
function, which works fine and as expected as long I use a column vector as values (rather than a matrix).
I am wondering what is the best way to solve my problem without looping through the individual columns of my value matrix?
Here's my sample code:
subs = [1;1;1;2;2;2;2;2;3;3;4;4;4];
vals1 = [0.1;0.05;0.2;0.02;0.09;0.3;0.01;0.21;0.12;0.06;0.08;0.12;0.05];
% This is working as expected
result1 = accumarray(subs,vals1, [], @(x) prod(1+x) -1)
vals2 = [vals1,vals1];
% This is not working as the second input parameter of accumarray
% apperently must be a vector (rather than a matrix)
result2 = accumarray(subs, vals2, [], @(x) prod(1+x) -1)
For vals you can set it as
1:size(vals2,1)
and use it to extract rows ofvals2
. Also it is required for the function to return cell.You can concatenate cell elements:
Or all in one line:
Result of a test in Octave comparing three proposed methods using a
[10000 x 200]
matrix as input:Online Demo