Find the evaluated condition in decision
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ajay krishna Vasanthakumar
am 25 Mai 2020
Kommentiert: Ajay krishna Vasanthakumar
am 25 Mai 2020
Can someone help me with a program to find the condition of a decision which is executed. For example
((u == 1)&&(u1==2))||(u ==2)&&u1==2)
In this decision the if the 1st condition is satisfied the second condition is not evaluated (short circuited)
2 Kommentare
Antworten (1)
Image Analyst
am 25 Mai 2020
Do you mean like this?
if (u == 1) && (u1==2)
% First condition code.
elseif (u == 2) && u1 == 2 % Only evaluated if the first test fails.
end
3 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!