Borrar filtros
Borrar filtros

Testing if a input is a numerical (double) of character

16 visualizaciones (últimos 30 días)
Jucimar Carpe
Jucimar Carpe el 18 de Ag. de 2019
Comentada: Jucimar Carpe el 18 de Ag. de 2019
Hi folks, i'm implementing a software on appDesigner and i want to prevent wrong entries from users.
I've tried to use the folowing code but it's not working. My gol would be, check if the user entered with a number or character. If it's a number then OK, otherwise open a warning dialog box informing the error and then stop the program.
The way i've writed it's not working.
Sbase_gerador = str2double(strrep((app.potencia.Value),',','.'));% Read entry data and convert comma to '.' if needed
teste_potencia = isnumeric(Sbase_gerador)
if teste_potencia==0
opts= struct('WindowStyle','modal','Interpreter','tex');
tensao_incorreta_t2 = warndlg('\fontsize{11}Caracteres diferentes de números não são aceitos.',...
'Entrada incorreta de dados', opts);
app.potencia.Value='0';
end

Respuesta aceptada

Adam Danz
Adam Danz el 18 de Ag. de 2019
Editada: Adam Danz el 18 de Ag. de 2019
You can use str2double() to convert the string to numeric. If the string did not contain something that can be converted to numeric, it will return NaN.
isNumber = ~isnan(str2double(str));
Examples
isNumber = ~isnan(str2double('100')) % true
isNumber = ~isnan(str2double(' 100 ')) % true
isNumber = ~isnan(str2double('3.1415926')) % true
isNumber = ~isnan(str2double('8.3205e+24')) % true
isNumber = ~isnan(str2double('Abcd')) % false
isNumber = ~isnan(str2double('5 and 7')) % false
  6 comentarios
Adam Danz
Adam Danz el 18 de Ag. de 2019
Do you mean a certain input is not producing the expected output with the code from my answer? Or is there a different problem?
Jucimar Carpe
Jucimar Carpe el 18 de Ag. de 2019
I let in this way.
It seems the instruction ~isnan let the variable Sbase_gerador with some random number (that i dont know what it is) because of the logical answer. And this make my calculations crazy.
Sbase_gerador = ~isnan(str2double(strrep((app.potencia.Value),',','.')))
if ~Sbase_gerador
opts= struct('WindowStyle','modal','Interpreter','tex');
potencia_incorreta = warndlg('\fontsize{11}Caracteres diferentes de números não são aceitos.',...
'Entrada incorreta de dados', opts);
app.potencia.Value='0';
end

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by