On multiple logical test failing in if statement

10 views (last 30 days)
Hello, I am trying to run an if statement with multiple conditions as below,
if abs(a-a_t)>0.0001 && abs(b-b_t)>0.00001 && abs(c-c_t)>0.0001 && abs(d-d_t)>0.00001
x=0;
y=0;
end
Even when all the conditions are satisfied, the values of x and y are not updated. But, it works if we have just two conditions (I've tried different combinations of two variable values which work, but using all conditions in separate brackets doesn't work). MATLAB documentation says that multiple logical operators could be used, but it doesn't seem to be working in my case. Is there a limit to the number of logical operators that could be combined? Or, am I missing something?
Thanks for your advice.
  2 Comments
Stephen23
Stephen23 on 8 Jul 2018
Edited: Stephen23 on 8 Jul 2018
"Is there a limit to the number of logical operators that could be combined?"
No.
"Or, am I missing something?"
Probably. How are you checking the output? Please show us the exact input values (all eight of them). Please upload your code by clicking the paperclip button.
Tailman
Tailman on 8 Jul 2018
Hello Stephen,
Thanks for your quick reply.
This is puzzling, not to mention embarrassing too. I tried to run the code again and found that it is running. I am unsure what was the problem last time (it is the exact same code and inputs as back then). Thanks again for your reply, though!

Sign in to comment.

Accepted Answer

dpb
dpb on 8 Jul 2018
Edited: dpb on 8 Jul 2018
Apparently the issue was likely one of the cases wasn't actually T or some similar misstep, but illustrates the difficulties inherent in writing code with sequentially-named variables. Use arrays instead.
If had defined a variable data and commensurate test value, then the following could be written much more succinctly and much easier to both code and debug--
data=[a b c ...]; % the data array (*)
test=[a_t b_t c_t ...]; % associated test values
lims=[0.0001 0.00001, 0.0001, ...]; % and criteria
if all(abs(data-test))<lims % see if all ok
....
(*) And, of course, this is not intended to suggest one should write the specific line concatenating all these variables to create the one; instead use the vector features of Matlab when creating the variables initially, either by reading one or more files or the result of other calculations, whatever.
Don't create the problem in the beginning to have to try to fix later...
  7 Comments
Tailman
Tailman on 9 Jul 2018
Thank you for pointing this out. It should be an "or" condition. I am also adding breakpoints to see if there's something else I'm missing.
Tailman
Tailman on 9 Jul 2018
Edited: Tailman on 9 Jul 2018
Sorry, I deleted the previous comment instead of editing it (Gist- I used && because by the time the first value converges, remaining three too should have converged, so, when abs(a-a_t)<0.0001, everything else too should be lesser than 0.0001).
Yes, I meant that the first value would converge finally. Thus, if the first condition were to be satisfied, all the remainder should be satisfied by nature of the problem. But, still, I think that using "or" condition would be the better option, in case something unexpected comes up.
Also, I thought that if the first condition were not met, then && would skip the remainder, as the logical statement would anyway result in a 0, whereas the "or" would go on to check the remainder as we could have a result of 1. Would this be the other way around?

Sign in to comment.

More Answers (0)

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!