필터 지우기
필터 지우기

Executing the body of IF statement.

조회 수: 2 (최근 30일)
Waseem AL Aqqad
Waseem AL Aqqad 2020년 10월 12일
편집: Stephen23 2020년 10월 12일
Hi,
Why MATLAB is not executing the body of the following selection if statement eventhough I believe the condition is true? Your help would be appreciated!
Note: members is a 1by 3 cell. attack = 5, n1=7
for ii=1:n1 % Check if neighboring nodes will survive the cascading failure or not
if ~ismember(ii,members{1}) && ~ii==attack
A(ii,:)=0;
A(:,ii)=0;
C(ii,:)=0; % All nodes in Layer B coupled to neighboring nodes will get failed
C(:,ii)=0;
end
end
  댓글 수: 3
Waseem AL Aqqad
Waseem AL Aqqad 2020년 10월 12일
This is what I did actually before posting this question
Waseem AL Aqqad
Waseem AL Aqqad 2020년 10월 12일
But thanks for sharing that useful page.

댓글을 달려면 로그인하십시오.

채택된 답변

Stephen23
Stephen23 2020년 10월 12일
편집: Stephen23 2020년 10월 12일
Solution: the logic is incorrect:
~ii==attack
should be
ii~=attack
Explanation: the code
~ii==attack
following the rules of operator precedence is equivalant to
(~ii)==attack
which for the case that both ii and attack are non-zero is equivalent to
false==true
which is thus simply equivalent to
false
  댓글 수: 2
Waseem AL Aqqad
Waseem AL Aqqad 2020년 10월 12일
Thank you very much, Stephen!
Waseem AL Aqqad
Waseem AL Aqqad 2020년 10월 12일
Thanks for the explanation.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by