Determine if a value has changed after some operations?

6 Ansichten (letzte 30 Tage)
Xiaohan Du
Xiaohan Du am 23 Apr. 2018
Beantwortet: Guillaume am 23 Apr. 2018
Hi all,
How can I determine if a value has changed or not after some operations? For example:
testA = valueA;
% after some operations, testA = valueA or valueB;
% if value of testA changes, continue operation, elseif unchanges, cease operation.

Antworten (1)

Guillaume
Guillaume am 23 Apr. 2018
testA = valueA;
oldtestA = testA;
%... do some operations that may change testA
if oldtestA ~= testA %assuming that testA is scalar
%value has changed
else
%value has not changed
end

Kategorien

Mehr zu Manage Products 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