I want to throw the error that comes with entering a non number in a numeric only input
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nam Vinh Nguyen
le 30 Août 2021
Commenté : Nam Vinh Nguyen
le 30 Août 2021
n = input('Please enter a number:\n');
I get this error and I want to throw it and write another error:
Error using input
Unrecognized function or variable 'k'.
Error in eer (line 1)
n = input('Please enter your name:\n');
0 commentaires
Réponse acceptée
Wan Ji
le 30 Août 2021
n = str2num(input('Please enter a number:\n','s'));
if(isempty(n))
error('You are entering a non number in a numeric only input')
end
10 commentaires
Wan Ji
le 30 Août 2021
n = input('Please enter a number:\n','s');
if(isempty(n))
error('You are entering nothing')
elseif(isempty(str2num(n)))
error('You are entering a non number in a numeric only input')
end
n = str2num(n);
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Multirate Signal Processing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!