Where is the problem in this if-else structure?

1 visualizzazione (ultimi 30 giorni)
Riyasat
Riyasat il 28 Ago 2016
Commentato: Walter Roberson il 31 Ago 2016
This is an if-else structure of a larger problem. I have simplified it down to the numerals in work here, but can't figure out where lies the problem.
when I evaluate this simple if structure, the program effortlessly outputs a value of "w=1", (The program enters the structure.)
if (1 > 0)&(3 <= 4)
w = 1;
end
But when I evaluate the same above structure inside an if, else if combination the program won't enter in the "elseif structure" for some reason, and only outputs "m=0", whereas I should also get "w=1". What am I doing wrong?
if (4 <= 4)& (3 <= 4)
m= 0;
elseif (1 > 0)&(3 <= 4)
w = 1;
end
Matlab always evaluates:
(4 <= 4)& (3 <= 4)
equals to logical 1. Why won't it then enter inside the if, else-if structure?
  1 Commento
Stephen23
Stephen23 il 29 Ago 2016
Modificato: Stephen23 il 29 Ago 2016
"Why won't it then enter inside the if, else-if structure?"
Because that is what it is supposed to do.
"What am I doing wrong?"
You didn't read the if documentation.

Accedi per commentare.

Risposte (2)

per isakson
per isakson il 28 Ago 2016
Modificato: per isakson il 30 Ago 2016
"whereas I should also get "w=1"." &nbsp No it should not, because doc says "The statements execute only if previous expressions in the if...end block are false.". In your case a previous expression, (4 <= 4)& (3 <= 4), is true. Only the statements following the first expressions that is true will be executed.

John BG
John BG il 29 Ago 2016
Modificato: John BG il 29 Ago 2016
because in your
if cond1
elseif cond2
end
cond1 and cond2 are nested, cond2 only happens if cond1 is false. Because in your example cond1 is 1, true, the if exits. It's the way it works.
Try instead
if cond1
..
end;
if cond2
..
end;
or try a switch
if you find this answer useful would you please be so kind to mark my answer as Accepted Answer?
if you would accept my answer with additional comments, please let me know what else you would like to be added in order close your question.
To any other reader, please if you find this answer of any help solving your question,
please click on the thumbs-up vote link,
thanks in advance
John BG
  3 Commenti
John BG
John BG il 30 Ago 2016
Modificato: John BG il 30 Ago 2016
I didn't mention the command switch to do what he expected elseif to do but it doesn't.
I am just encouraging to try a different command, that does the same, hoping for the understanding of the basic point that 'else' implies exclusion, not the expected inclusion that Abdul wonders about.
Guillame, next comment please add something we do not know, cool?
Walter Roberson
Walter Roberson il 31 Ago 2016
Guillame was mentioning something that the original poster probably did not know.

Accedi per commentare.

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by