Problem 58613. Sum the two halves of an array with an even number of elements
given an array of an even number of elements, sum the front and back half of the array and return the sums as an array
For example:
x = [3, 5, 6, 7]
ans = sumHalfArrays(x)
ans = [8, 13];
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers33
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15654 Solvers
-
779 Solvers
-
Determine the number of odd integers in a vector
763 Solvers
-
607 Solvers
-
821 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!