MATLAB: Add an integer x to certain values of a vector

addelementvector

for example i have the number 8, and i have a vector[ 1 2 3 4 5]
i need to add 8 to the elements 1-4 of the vector to get the value 18
how would i do this?

Best Answer

8 + sum(YourVector(1:4))