Use if in function to check a number is smaller than given number

조회 수: 5 (최근 30일)
non non
non non 2023년 4월 21일
답변: Kautuk Raj 2023년 6월 2일
I want to use if to check an input number if the number is less than 10 or not
My code
%%Input
function input (input)
if input<10
disp ('The number is less than 10')
else
disp ('The number is more than 10')
end
No matter what number I enter, the result is always "The number is more than 10", even though the number I entered is less than 10
  댓글 수: 2
Stephen23
Stephen23 2023년 4월 21일
편집: Stephen23 2023년 4월 22일
Do NOT name your function INPUT, or use INPUT as the name of any variable.
After renaming, your code works without error on this forum:
myfun(3)
The number is less than 10
myfun(13)
The number is more than 10
function myfun(val)
if val<10
disp('The number is less than 10')
else
disp('The number is more than 10')
end
end
Rik
Rik 2023년 4월 22일
I would not have expected this code to run at all. Which release are you using?

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

답변 (1개)

Kautuk Raj
Kautuk Raj 2023년 6월 2일
After a quick rename of the variables in your code, it will work as we expect it to. The reason is well explained by @Stephen23 in the comments.
function myfun(val)
if val<10
disp('The number is less than 10')
else
disp('The number is more than 10')
end
end

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by