Importing excel numerical data into menu options

2 views (last 30 days)
[EDIT: Thu May 12 23:00:29 UTC 2011 Duplicate Removed - MKF]
This is the code that i have for my program. I am trying to import all of the numerical data from the first column of the worksheet into the menu as options, but it is only giving me the very first one. Please help me figure out what I need to do. Thanks!
%The Excel worksheet 'COST' is inputed into MATLAB.
[COSTdata,COSTtext]=xlsread('48FF5.xlsx','COST');
%The user is prompted to select the diameter of pipe they wish to use.
Diameter=menu('Select pipe diameter',COSTdata(1:length(COSTdata)));

Accepted Answer

Walter Roberson
Walter Roberson on 28 Apr 2011
t = cellstr(num2str(costdata(:,1)));
Diameter = menu('Select pipe diameter', t{:});

More Answers (1)

bym
bym on 28 Apr 2011
read the documentation, the second (third, fourth, etc) argument to menu needs to be a string variable

Community Treasure Hunt

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

Start Hunting!