How can I compute the summation of an interval. I will use Matlab's code for eg.
data=[1;2;3;4;5;6;7;8;9;10;11;12]
I would like to perform this summation.
sum(1)=data(1)+data(2)+data(3)
sum(2)=data(4)+data(5)+data(6)
sum(3)=data(7)+(data(8)+data(9)
sum(4)=data(10)+data(11)+data(12)
How can I get about this? (Using for loop)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…