How to impliment a covergence condition?

2 Ansichten (letzte 30 Tage)
m m
m m am 20 Mai 2019
Kommentiert: Geoff Hayes am 22 Mai 2019
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)

Akzeptierte Antwort

Geoff Hayes
Geoff Hayes am 20 Mai 2019
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 Kommentare
m m
m m am 21 Mai 2019
i tried this, but it take a lot of time without give any result.
Geoff Hayes
Geoff Hayes am 22 Mai 2019
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.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Function Creation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by