Problem 44886. Given a Vector v1, create v2 which is the sum of each two adjacent elements in v1. {length(v2)=length(v1)-1}
if v1 is [1 2 3 4 5 6 7 8] then v2 should be [3 5 7 9 11 13 15].
if v1 is [1; 3; 5; 7] then v2 should be [4; 8; 12].
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers158
Suggested Problems
-
Back to basics 9 - Indexed References
446 Solvers
-
Set the array elements whose value is 13 to 0
1375 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
11884 Solvers
-
07 - Common functions and indexing 5
414 Solvers
-
Change the first and last diagonal element of the identity matrix to zero
153 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!