if else Problem in matlab

조회 수: 2 (최근 30일)
MD Anower Hossain
MD Anower Hossain 2019년 10월 30일
편집: Bhaskar R 2019년 10월 30일
clear;
clc;
a = input('enter a number ');
result = isdivby4(a);
disp(result);
function out = isdivby4(n)
if n%2 == 0
out = 1;
elseif n%2 == 1
out = 0;
end
end
% what is the problem here ? alltime i get the output is 1 if i enter 3 then i should get 0 . whats wrong here??

채택된 답변

Bhaskar R
Bhaskar R 2019년 10월 30일
편집: Bhaskar R 2019년 10월 30일
In C/C++ progromming language the symbol '%' used for remining value but in the MATLAB the percentile symbol(%) used as commnet. In MATLAB if conditioning other than 0 for all values it is true so you got always 1 for your function
MATLAB is very rich in documentation please read MATLAB basics
It can be optimized in one line statement rather than using as function
result = (mod(a, 4) == 0)
  댓글 수: 1
MD Anower Hossain
MD Anower Hossain 2019년 10월 30일
yes ,, got it ,, thank you so much

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Just for fun에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by