Only gu values tu ?

1 visualización (últimos 30 días)
Steven Thies
Steven Thies el 18 de Feb. de 2021
Comentada: Rena Berman el 6 de Mayo de 2021
Hello Matlab community,
i created a script and everything works but i want to add that the script accepts also only integer values for m. How can i do this?
i = 0;
m = input('please number: ','s');
while isnan (str2double(m)) == true || str2double(m)<0
m = input('please again: ','s');
if isnan (str2double(m)) == true || str2double(m)<0
i = i+1;
if i == 4
return
end
else
break
end
end
  2 comentarios
Stephen23
Stephen23 el 19 de Feb. de 2021
Editada: Stephen23 el 19 de Feb. de 2021
Original question by Steveb Thies retrieved from Google Cache:
"Only integer values ?"
Hello Matlab community,
i created a script and everything works but i want to add that the script accepts also only integer values for m. How can i do this?
i = 0;
m = input('please number: ','s');
while isnan (str2double(m)) == true || str2double(m)<0
m = input('please again: ','s');
if isnan (str2double(m)) == true || str2double(m)<0
i = i+1;
if i == 4
return
end
else
break
end
end
Rena Berman
Rena Berman el 6 de Mayo de 2021
(Answers Dev) Restored edit

Iniciar sesión para comentar.

Respuestas (2)

Les Beckham
Les Beckham el 19 de Feb. de 2021
To test for integer values of double numbers (doubles are the default numeric type in Matlab), I would suggest using mod(m,1).
So, in your case, replace "isnan (str2double(m)) == true || str2double(m)<0" with "mod(m,1) ~= 0" to detect a number that is not an integer.
Of course your code does nothing whether the test passes or fails so I'm not sure what the point is. I assume you have left some things out?

Walter Roberson
Walter Roberson el 19 de Feb. de 2021
positive integers have the property that all of their characters are one of '0','1','2','3','4','5','6','7','8','9', or '+'... unless you want to accept exponential notation as well, in which case the characters might also be 'd', 'D', 'e', 'E', '.', or '-' .
  1 comentario
Les Beckham
Les Beckham el 19 de Feb. de 2021
Your answer made me notice that Steven was using the 's' option in his input call. I had missed that before.
Perhaps remove the 's' option and use mod as I suggested? Still, the example code does nothing with the result, so it is difficult to tell what the desired behavior is.

Iniciar sesión para comentar.

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by