How can i determine error in matlab by using error loop without try catch or other loops?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
ahmet ozdemir
il 30 Apr 2016
Risposto: ahmet ozdemir
il 30 Apr 2016
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,
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 30 Apr 2016
Modificato: Azzi Abdelmalek
il 30 Apr 2016
a=input('enter a number N','s')
b=str2num(a)
if isempty(b)
'Error'
'presse any key to cotinue'
pause
end
1 Commento
Walter Roberson
il 30 Apr 2016
Modificato: Walter Roberson
il 30 Apr 2016
str2double would be better for restricting to numbers. you would check for nan rather than isempty
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!