Calculate the time-averaged value every 10 iterations
6 次查看(过去 30 天)
显示 更早的评论
Hi,
I do the calculation of X (k) 1000x1 in a time loop for t = 1: 10000 (note that X does not have an iteration t) and I want to put a condition when t = 9000 to compute the averaged value (in the time) of X every 10 iterations ot t and when t> = 9000 : 10000
I want to get the size of X average like that 1000x10 without introducing a time iteration t in the variable X
is there a way to do that?
0 个评论
采纳的回答
Nicolas B.
2019-12-11
编辑:Nicolas B.
2019-12-11
I'm trying to understand your question. I understand that every 10 iterations, you want to display the average computation time of the last 10 iterations. So I would like to recommend you to do something like that:
% create t to go faster
t = NaN(1, 10);
it = 1; % index in t array
for i = 1:10000
tic;
% your code
t(it) = toc; % get the execution time for this sample
% taking into account that i starts with 1
it = it + 1;
% display average time and reset counter
if it == 10
% compute and display average computation time
fprintf('My average computation time = %f\n', mean(t));
it = 1;
end
end
% display last iterations if not already done
if it ~= 1
fprintf('My average computation time = %f\n', mean(t(1:it)));
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 PDE Solvers 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!