Speed up my "for" loop
조회 수: 4 (최근 30일)
이전 댓글 표시
Hi Everyone,
Could you please help to speed up this piece of code? What it does, it basically converts 50 Hz data to a 5 Hz data, averaging each 10 values of each field. Second and last field names are not under this conversion. And the last # of values of each field is less than ten, therefore , I use last two lines inside the loop to take care of it.
so, in total there are 11 fieldnames, each containing 12666529 values
tic
for n = [1, 3:length(names)-1]
for k = 0:count
data.(names{n})(k+1) = mean(data.(names{n})((1+10*k):(10*(k+1))));
end
data.(names{n})(count + 2) = mean(data.(names{n})(total - (total - (count+1)*10 + 1):total));
data.(names{n})(count+3:total) = [];
toc
end
The time I spent right now is 304 secs:
each loop takes around 25 secs
Elapsed time is 25.251421 seconds.
Elapsed time is 50.271446 seconds.
Elapsed time is 75.096751 seconds.
Elapsed time is 100.987307 seconds.
Elapsed time is 126.373710 seconds.
Elapsed time is 151.917404 seconds.
Elapsed time is 177.191153 seconds.
Elapsed time is 202.475424 seconds.
Elapsed time is 227.890811 seconds.
Elapsed time is 253.500255 seconds.
Elapsed time is 278.895494 seconds.
Elapsed time is 304.218428 seconds.
Elapsed time is 304.268410 seconds.
Thanks a lot! Nurlan
댓글 수: 1
Mazin Mustafa
2016년 7월 17일
편집: Mazin Mustafa
2016년 7월 17일
Hi,
I think that if you can use vectors instead of the for loop, this might speed up the calculations. Matrix operations are the fastest in MATLAB.
채택된 답변
Jan
2013년 9월 11일
편집: Jan
2013년 9월 12일
You forgot to pre-allocate the results. Letting the arrays grow iteratively requires a huge amount of memory allocations and copies. For 12666529 values the resulting vector grows 1266652 times and this requires sum(1:1266652) * 8 bytes to be allocated and copied: 802 GigaByte!
So in a first step a pre-allocation is recommended:
result = zeros(1, count + 1); % Pre-allocate !!!
value = data.(names{n}); % Faster shortcut
for k = 0:count
result(k+1) = mean(value((1+10*k):(10*(k+1))));
end
For testing measure the timings with this method at first. Then in a next step the blockwise sum can be calculated in a vectorized form:
result = sum(reshape(data.(names{n})(1:10*(count+1), 10, []), 1) / 10;
댓글 수: 4
Jan
2013년 9월 12일
I do not get it. Instead of calling mean() inside a loop, it is much faster to use reshape to convert the vector to a matrix with 10 rows, calculate the sum() and finally divide by 10.
추가 답변 (1개)
Ken Atwell
2013년 9월 11일
댓글 수: 3
Ken Atwell
2013년 9월 11일
I have not used is much, but from the doc:
- First argument is the signal
- Second argument is the desired sample rate
- Third argument is the current sample rate
It could actually be slower because it may be doing something more mathematically sophisticated than taking the mean, but it is worth trying. More on resampling here.
참고 항목
카테고리
Help Center 및 File Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!