How to take positive value from logical command

조회 수: 2 (최근 30일)
Ahmad Bayhaqi
Ahmad Bayhaqi 2021년 4월 29일
댓글: Ahmad Bayhaqi 2021년 5월 2일
Hi All
I have two data A and B and want to do logical command for them; A is bigger than B. However, I want to take "true" result from the positive "A"
Is there a way to do it?
Thank you

채택된 답변

the cyclist
the cyclist 2021년 4월 29일
편집: the cyclist 2021년 4월 29일
I'm not sure I know what you mean. Do you mean you only want true if both the following criteria are met?
  • A > B
  • A > 0
If that is what you mean, then
output = (A>B) & (A>0);
If you mean you want the positive values of A, where A is also larger than B, then
output = A((A>B) & (A>0));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by