Testing if an input is numeric or character

3 ビュー (過去 30 日間)
Jucimar Carpe
Jucimar Carpe 2019 年 8 月 19 日
コメント済み: Jucimar Carpe 2019 年 8 月 20 日
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.
I don't know how to get the logical answer of "teste_potencia" and use it!
The way i've writed it's not working.
Sbase_gerador = str2double(strrep((app.potencia.Value),',','.'));
teste_potencia = isnumeric(Sbase_gerador)
if ~teste_potencia
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

採用された回答

Stephen23
Stephen23 2019 年 8 月 19 日
if isnan(Sbase_gerador)
...
end
  3 件のコメント
Stephen23
Stephen23 2019 年 8 月 20 日
編集済み: Stephen23 2019 年 8 月 20 日
"Is it possible to stop the program?"
Depending on how you want to "stop" the program, one of these might work for you:
  • return
  • break
  • error
  • keyboard
  • if followed by some other code...
"thank you very much for you help!!!"
My pleasure! If it helped you don't forget to accept my answer!
Jucimar Carpe
Jucimar Carpe 2019 年 8 月 20 日
Thank you again!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by