Error in XLS Read
4 次查看(过去 30 天)
显示 更早的评论
Im am prompted to enter an excel sheet filename then use xlsread to display it on the matlab
I have tried using
F=input('Enter filename')
A=xlsread(F)
But whenever I run the program I receive a message saying that filename was not found even though it works with every other command and I carefully checked the spelling
回答(1 个)
Geoff Hayes
2020-5-14
Shady - perhaps you need to supply the path to the file? Is the file in the MATLAB search path? Consider using uigetfile so that the user can choose the file that she wants to open. Your code may look something like
[file,path] = uigetfile('*.xlsx')
A=xlsread(fullfile(path,file));
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Report Generator 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!