Character input error message !!
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello there, i want my inputs to be a positive number not a negative number or a text just positive number starting from zero, therefore i used this code,
m = str2num(get(handles.m,'string'));
v = str2num(get(handles.v,'string'));
if ( m >= 0 && v >= 0)
else
errordlg( 'The Inputs must be a positive numbers' )
end
This error is only for the negative values, i want to add if the input is text show an error so what should i add to this code .
0 commentaires
Réponses (1)
Giorgos Papakonstantinou
le 21 Mar 2015
If the string you get from handles.m is a char class then str2num will produce an empty matrix.
>> str2num('hello')
ans =
[]
Therefore, your else statement will be invoked and apparently, you will not have a problem. However, if you want to determine whether the item is character array you may use ischar.
0 commentaires
Voir également
Catégories
En savoir plus sur Data Type Identification 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!