Help using menu option
조회 수: 9 (최근 30일)
이전 댓글 표시
I am trying to write a code that a menu pops up and the user chooses between two options. Based off of what they choose, there are two different sections of code that would run. I am assuming I need an if statement after the menu option based off of what they choose to seperate between the two sections of code but I am not sure how to do that.
댓글 수: 0
답변 (2개)
Image Analyst
2021년 10월 24일
편집: Image Analyst
2021년 10월 24일
Example from the help:
list = {'Red','Yellow','Blue',...
'Green','Orange','Purple'};
[index, tf] = listdlg('ListString', list);
or try questdlg():
promptMessage = sprintf('Which option do you want?');
titleBarCaption = 'Which option?';
buttonText = questdlg(promptMessage, titleBarCaption, 'Option 1', 'Option 2', 'Option 1');
if contains(buttonText, '1', 'IgnoreCase', true)
% They selected option 1.
else
% They selected option 2.
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!