xlsread unable to open file
21 次查看(过去 30 天)
显示 更早的评论
I have been messing with this for a while now but have no clue what to change. The error is in line 4, any ideas?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/196299/image.png)
0 个评论
采纳的回答
Stephan
2018-9-20
编辑:Stephan
2018-9-20
Hi,
path = 'C:\Users\Stephan\Desktop';
filename = 'test.xlsx';
fullpath = [path, '\', filename];
data = xlsread(fullpath,'A1:B2');
is one possibility of solving this problem.
path = "C:\Users\Stephan\Desktop";
filename = "test.xlsx";
fullpath = join([path, filename],"\");
data = xlsread(fullpath,'A1:B2');
Note that double quotes are used now.
Best regards
Stephan
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Search Path 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!