How to resolve empty inputdlg box issue?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
John Doe
il 12 Lug 2020
Commentato: Star Strider
il 21 Mag 2023
Hello everyone!
I have a inputdlg box. I want the inputdlg box to cancel the processing if the user pressed OK without giving any input in the inputdlg box. How can I do that?
I know how to cancel the processing if Cancel or the close button is pressed.
Thanks in advance!
0 Commenti
Risposta accettata
Star Strider
il 12 Lug 2020
Try this:
a = inputdlg('Type a number:')
if isempty(a{:})
disp('a is empty') % Information Only To Demonstrate That The Test Works
return
end
fprintf('a = %f\n', str2double(a))
.
2 Commenti
Mpho
il 21 Mag 2023
Hi, thanks for the helpful answer. Could you please explain what the colon does?
Star Strider
il 21 Mag 2023
My pleasure!
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!