필터 지우기
필터 지우기

how to create three conditions in the same if statement?

조회 수: 10 (최근 30일)
Ibrahim AlZoubi
Ibrahim AlZoubi 2020년 6월 3일
답변: madhan ravi 2020년 6월 3일
How to write if statment with three conditons? this is my code:
if C(i,1)<= A || N(i,1)> B
and I want to add this to the condition:
|| x>=y

답변 (1개)

madhan ravi
madhan ravi 2020년 6월 3일
if (C(i,1)<= A) || (N(i,1)> B) || (x>=y)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by