Create a Menu From Excel Data

조회 수: 8 (최근 30일)
Julie
Julie 2011년 4월 18일
Is there a way in which you can create a menu that will take text strings from an Excel file and place them as the options for the menu, and if so how do I do that?

채택된 답변

Laura Proctor
Laura Proctor 2011년 4월 18일
You can read the strings from the cells using XLSREAD, then use MENU to create the menu.
For example:
[num,txt,raw] = xlsread('myfile.xls');
choice = menu('Choose an item',txt)
  댓글 수: 3
Laura Proctor
Laura Proctor 2011년 4월 19일
In that case, you can just use:
choice = menu('Choose an item',txt(2:end))
Or, redefine txt and use the same syntax as above:
txt = txt(2:end)
Julie
Julie 2011년 4월 27일
I am now trying to do the same thing with numerical values, but I cannot get it to work. Do I have to do something different?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by