msgbox is not displaying the string entered in body
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am using msgbox function in Matlab to display a message.
%This is the code i have written
msgbox('I am the title','I am the body');
I am getting message box with
'I am the body" in title of msgbox and nothing in the body of msgbox
I am using R2019a version.Kindly help me to solve this issue
0 Kommentare
Antworten (2)
Milad Mohammadzadeh Sharif
am 20 Jun. 2019
Bearbeitet: Milad Mohammadzadeh Sharif
am 20 Jun. 2019
The first input for the "msgbox" function takes place in the body of your message box,
The second input will be the smallest of your message box.
and there is a third input which is determine the window mode.
here you can see my code:
msgbox ( 'i am the little' , 'I am the body' , "non-modal" )
Siehe auch
Kategorien
Mehr zu Environment and Settings 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!