Looping through numbers in file and adding first two numbers then next two and so on

1 次查看(过去 30 天)
A = [1 2 3 4 5]
1+2 = 3
2+3 = 5
3+4 = 7
4+5 = 9
How can I loop through an array of numbers like above while storing the number everytime numbers are added? Thank you for any help!

回答(2 个)

the cyclist
the cyclist 2019-8-1
A(1:end-1) + A(2:end)

Andrei Bobrov
Andrei Bobrov 2019-8-2
编辑:Andrei Bobrov 2019-8-2
conv(A,[1,1],'valid')
or
b = movsum(A,2);
out = b(2:end);

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by