How to impliment a covergence condition?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
How can i impliment a convergence condition in a loop. (the condition is A(k,i)-A(k+1,i)<=0.0001)
and with another condition :( if the condition is true continue, else replace the the last value and repeat).
for emample:
for k=1:t (time loop)
for i=1:10
A(i)=....
end
end (for k)
댓글 수: 0
채택된 답변
Geoff Hayes
2019년 5월 20일
abdel - perhaps your condtion would be
if abs(A(k,i) - A(k+1,i)) <= 0.0001
% do nothing
else
% replace your value
end
Since we do nothing if the condition is true, we could simplify the above code to
if abs(A(k,i) - A(k+1,i)) > 0.0001
% replace your value
end
댓글 수: 2
Geoff Hayes
2019년 5월 22일
maybe this is the wrong condition to use then. Try stepping through the code with the debugger to understand why you might not be getting a result.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!