Displaying a description
이전 댓글 표시
How do I write a description for a program such that when I chose an option, the description of the program pop-out in the command window?
This question is pretty vague, I hope it's not too confusing
댓글 수: 3
Fangjun Jiang
2011년 10월 22일
Like you said, it is pretty vague. Why didn't you clear it up?
NUR KHAIRUNNISA rahimi
2011년 10월 23일
Fangjun Jiang
2011년 10월 23일
Okay then, can you show your code? I don't understand "but it said the input was too long." Here is an example.
Str=['This is a description',char(10)];
LongStr=repmat(Str,1,100);
clc;
disp(LongStr);
Is it long enough?
답변 (1개)
the cyclist
2011년 10월 23일
I believe you want the msgbox() command. Try this:
>> msgbox('This is the description that you wrote')
Read "doc msgbox" for details.
댓글 수: 1
Walter Roberson
2011년 10월 23일
That wouldn't "pop out in the command window".
Seems to me that a simple function that does a bunch of fprintf() or disp() is all that is needed, and then to tie that function in as a callback to whatever the poster means by "choose an option".
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!