Sum over part of array without knowing array size
7 views (last 30 days)
Show older comments
I currently have a function that takes a two dimensional (2D) array as one of its inputs. Part of the function code sums over all but the first column of this input array, i.e.:
function DoSomething( Array2D, OtherInputs)
...
SumOverColumns = sum(Array2D(:, 2:end), 2);
...
end
I want to expand the use of the function so that the array can be 3D or more. However, I still want to be able so sum over all columns except the first one. I can't think of a general way to do this because I think that I need to specify ":" for every other dimension.
Any help would be much appreciated.
2 Comments
Cedric
on 9 Sep 2015
Edited: Cedric
on 9 Sep 2015
You need to define a little more precisely what happens with higher dimensions, and what it is that you want to output. In 2D you are summing over the 2nd dimension excluding the first column and outputting a column vector of sums. What happens in 3D? Do you still need to sum over the 2nd dimension only excluding the first column of each page (and hence output a 2D array of sums), or do you need to sum over dimensions 2 and 3 excluding the first, simultaneously (output a vector) or separately (output two 2D arrays)?
Accepted Answer
John D'Errico
on 9 Sep 2015
Edited: John D'Errico
on 9 Sep 2015
Or more? How many more dimensions? Really high dimensional arrays will be huge, so it makes little sense to have a 300 dimensional array. Even a 2- dimensional array actually has infinitely many trailing singleton dimensions. So a 5x6 array is actually implicitly of size
[5,6,1,1,1,1,1,1,1,1, ...]
Suppose you are willing to assume your array will have no more than 5 dimensions in the future. Then the trivial solution is:
SumOverColumns = sum(Array2D(:, 2:end, :, :, :), 2);
There are ways to do this with more potential dimensions, but why bother?
4 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!