how to display a error message then proced further when the string doesnot matches by using for and if loop
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
this is my program
list={'AOA','CAS','IAS','ALT'};
prompt='Enter variable name';
a=input(prompt,'s');
b=strcmp(a,list);
if input does not matches with the list of variables then it must show an error 'Variable not found, please try again' (for three times) & if the user enters invalid variable for three times the program should be terminated.
0 commentaires
Réponses (3)
Chandrasekhar
le 7 Mar 2014
try
....your code
catch exception
disp(exception.message)
end
0 commentaires
Walter Roberson
le 7 Mar 2014
trycount = 0;
while trycount < 3
....
if no match
trycount = trycount + 1
end
end
if trycount >= 3
user blew it
end
Voir également
Catégories
En savoir plus sur Downloads 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!