Accessing Path names for reading Excel and saving .mat files in same folder

3 ビュー (過去 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

採用された回答

Walter Roberson
Walter Roberson 2012 年 10 月 23 日
Together with:
idx = find(TheFilename == '.', 1, 'last');
NewFilename = TheFilename;
NewFilename(idx:end) = '.mat';

その他の回答 (1 件)

Douglas Anderson
Douglas Anderson 2012 年 10 月 23 日
Thanks, Walter.
I guess I wasn't really clear about what I was looking for. I was wondering if there is something like "which" for Excel files, which would give the pathname of an existing file (in an existing directory), rather than inputting the path directly. This is on a Windows computer, so perhaps it's not as straightforward.
OH!!!!!! I just found that which DOES work for that! Then the rest of it is appropriate, using the find to parse it. Great!
Doug

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by