writting error meesage

1 Ansicht (letzte 30 Tage)
Taleb Almajrbi
Taleb Almajrbi am 30 Mai 2011
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

Akzeptierte Antwort

Oleg Komarov
Oleg Komarov am 30 Mai 2011
if r > 0.49
sprintf('The person is accepted.')
else error('The person is unccepted or not exist.')
end

Weitere Antworten (1)

Philip
Philip am 30 Mai 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.

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by