Importing excel numerical data into menu options
Show older comments
[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
More Answers (1)
bym
on 28 Apr 2011
0 votes
read the documentation, the second (third, fourth, etc) argument to menu needs to be a string variable
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!