writting error meesage
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello how can i write code to print message my answer is:
if r > 0.49 sPrintf('the person is accepted.'); else error('the person is unccepted or not exist.') end;
please correct my answer
thanks
0 Commenti
Risposta accettata
Oleg Komarov
il 30 Mag 2011
if r > 0.49
sprintf('The person is accepted.')
else error('The person is unccepted or not exist.')
end
0 Commenti
Più risposte (1)
Philip
il 30 Mag 2011
try using the 'msgbox()' function:
ie.
if r > 0.49
disp('The person is accepted')
else
msgbox('The person is not accepted','An error has occurred','error')
end
See "doc msgbox" for more details.
Vedere anche
Categorie
Scopri di più su Spectral Measurements 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!