Problem 750. Accumulate Cells
Given a combining function, a cell array, and an initial value, accumulate the result.
For example,
accumcell(@plus,{1,2,3,4},0)
should return 10, while
accumcell(@times,{1,2,3,4},1)
should return 24.
The elements of C should be such that the combining function can apply to them without generating an error (all the same size, for example).
Solution Stats
Problem Comments
-
2 Comments
Nicholas Howe
on 6 Jun 2012
I'm hoping there is a built-in function I don't know about that solves this problem. Perhaps accumarray?
Maryam HCT2022 Yousef
on 11 Oct 2021
Nice
Solution Comments
Show commentsProblem Recent Solvers44
Suggested Problems
-
3726 Solvers
-
Return a list sorted by number of occurrences
2829 Solvers
-
Back to basics 23 - Triangular matrix
1053 Solvers
-
Sum the elements in either diagonal of a square matrix
213 Solvers
-
Generate a random matrix A of (1,-1)
362 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!