Calculate the time-averaged value every 10 iterations

조회 수: 10 (최근 30일)
m m
m m 2019년 12월 11일
댓글: m m 2019년 12월 11일
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?

채택된 답변

Nicolas B.
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
  댓글 수: 1
m m
m m 2019년 12월 11일
my X(k) is calculated in this loop like this
for t =1:10000
Xaveraged = 0; %initialization of the averaged value
for k = 1:1000
X1(k) = ..
end
%here i need this condition
if t>=9000
Xaveraged = Xaveraaged + X1
end
end
Xaveraged = Xaveraged /10000
i want to get Xaveraged in differebt steps of time.
there is a way to get this??

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Boundary Conditions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by