if else Problem in matlab

1 visualización (últimos 30 días)
MD Anower Hossain
MD Anower Hossain el 30 de Oct. de 2019
Editada: Bhaskar R el 30 de Oct. de 2019
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??

Respuesta aceptada

Bhaskar R
Bhaskar R el 30 de Oct. de 2019
Editada: Bhaskar R el 30 de Oct. de 2019
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 comentario
MD Anower Hossain
MD Anower Hossain el 30 de Oct. de 2019
yes ,, got it ,, thank you so much

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Just for fun en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by