Borrar filtros
Borrar filtros

How can i determine error in matlab by using error loop without try catch or other loops?

1 visualización (últimos 30 días)
My code only includes numbers. If someone donot gives a numbers in input, this code shows screen like ERROR but code should continue to work Thanks,

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 30 de Abr. de 2016
Editada: Azzi Abdelmalek el 30 de Abr. de 2016
a=input('enter a number N','s')
b=str2num(a)
if isempty(b)
'Error'
'presse any key to cotinue'
pause
end
  1 comentario
Walter Roberson
Walter Roberson el 30 de Abr. de 2016
Editada: Walter Roberson el 30 de Abr. de 2016
str2double would be better for restricting to numbers. you would check for nan rather than isempty

Iniciar sesión para comentar.

Más respuestas (1)

ahmet ozdemir
ahmet ozdemir el 30 de Abr. de 2016
Thanks for comment. Actually, it is not empty. For example Enter the number:4+5 9 Enter the number:4-9 -5 Enter the number:4+ (((()))) ERROR Enter the number:h+4 ERROR
If input includes h and empty parenthesis, this code will gives error. I finished all steps but i didnot do error part

Categorías

Más información sobre Loops and Conditional Statements 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