Effacer les filtres
Effacer les filtres

display a message in a message box

7 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 4 Jan 2013
i wanted to display a message in a message box saying...
Disease identified as Tumor,
Disease identified as Cancer, etc...
Disease identified as is constant.. tumor, cancer etc will be stored in a variable named as 'DiseaseIdentified' and i'll have to get it from that variable....
i did as below... but i'm getting error.... please could someone show me how to write it....
msgbox(sprintf('Disease identified as %s',DiseaseIdentified));
  2 commentaires
Seban
Seban le 4 Jan 2013
Which error do you get?
Jan
Jan le 4 Jan 2013
Whenever you post in the forum, that you get an error, add the complete message also. Currently an answer requires to guess what's going on, and if our guesses are wrong, an answer can be worse than no answer.

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 4 Jan 2013
You may want to use uiwait() so the message pauses there and waits for the user, and does not keep barreling along with the rest of your code, as just a plain msgbox will.
message = sprintf('Disease identified as %s', DiseaseIdentified{1});
uiwait(warndlg(message)); % Waits, and displays exclamation point.
or, if it is normal
uiwait(helpdlg(message)); % Waits, and displays info text balloon.
uiwait(msgbox(message)); % Waits, and displays no icon at all.
  1 commentaire
Elysi Cochin
Elysi Cochin le 5 Jan 2013
thank u all....

Connectez-vous pour commenter.

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 4 Jan 2013
Modifié(e) : Azzi Abdelmalek le 4 Jan 2013
Maybe is that what you want
msgbox(sprintf('Disease identified as %d',1));
or
DiseaseIdentified='cancer'
msgbox(sprintf('Disease identified as %s',DiseaseIdentified));
  3 commentaires
Seban
Seban le 4 Jan 2013
As it said, you can't use cell input in sprintf. You need to make sure DiseaseIdentified is a string.
Azzi Abdelmalek
Azzi Abdelmalek le 4 Jan 2013
Use
DiseaseIdentified={'cancer'}
msgbox(sprintf('Disease identified as %s',DiseaseIdentified{1}));

Connectez-vous pour commenter.

Catégories

En savoir plus sur Biotech and Pharmaceutical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by