How do I do an if greater than or less than for a if statement

조회 수: 32 (최근 30일)
Kaden Bauernfeind
Kaden Bauernfeind 2022년 5월 8일
편집: Jan 2022년 5월 8일
I need to do a question wehre it needs to be greater than or less than a certain limit.
This is specifically over g force so it needs to be greater tha -8g and less than 8g otherwise it displays a fail message

답변 (1개)

Jan
Jan 2022년 5월 8일
편집: Jan 2022년 5월 8일
if f <= -8 || f >= 8
error('f is outside the valid range')
end
Alternative:
if abs(f) >= 8

카테고리

Help CenterFile Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by