msgbox is not displaying the string entered in body
4 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (2 件)
Milad Mohammadzadeh Sharif
2019 年 6 月 20 日
編集済み: Milad Mohammadzadeh Sharif
2019 年 6 月 20 日
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" )
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!