Accessing Path names for reading Excel and saving .mat files in same folder
2 次查看(过去 30 天)
显示 更早的评论
Hi,
I have Excel data files in a number of folders under the MATLAB folder (all on the MATLAB path). To speed up analysis, I would like to only read the Excel file once, and then save the variables in a .mat file *in the same folder *as the original Excel file.
How do you get the actual path name for the Excel file without having to manually input it so it can be prepended to the .mat file name?
Thanks
Doug
0 个评论
采纳的回答
Walter Roberson
2012-10-23
Together with:
idx = find(TheFilename == '.', 1, 'last');
NewFilename = TheFilename;
NewFilename(idx:end) = '.mat';
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!