フィルターのクリア

Import csv files with sequential names

3 ビュー (過去 30 日間)
David du Preez
David du Preez 2018 年 2 月 14 日
編集済み: Jan 2018 年 2 月 14 日
I have several csv files with the following names:
19660101.Dobson.Beck.089.SAWS
19660201.Dobson.Beck.089.SAWS
19660301.Dobson.Beck.089.SAWS
and so on for an entire year.
I want to import row 25 - 55 and only column A and D. I know it is possible to do one file would like to do all at once.

採用された回答

Jan
Jan 2018 年 2 月 14 日
編集済み: Jan 2018 年 2 月 14 日
See FAQ: Import sequence of files . You cannot import "all files at once", but you import one after the other in a loop.
Folder = 'C:\You\Folder';
DirList = dir(fullfile(Folder, '*.SAWS'));
for iFile = 1:numel(DirList)
File = fullfile(Folder, DirList(iFile).Name);
... import the contents of the file and do what you want
end

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by