How can I import multiple .CSV files in MATLAB with no sequential filename?

90 ビュー (過去 30 日間)
Farhan K
Farhan K 2020 年 2 月 24 日
編集済み: Stephen23 2022 年 2 月 28 日
I need to import 175 “.csv” files where each file contains 100 measurements from 400 items (Columns and Rows respectively). I have to write a script to import the data. The .csv files are named as D059546, D067966, D077936 etc.
Please HELP!
  3 件のコメント
Farhan K
Farhan K 2020 年 2 月 24 日
Thanks a lot. But before writing the script using dir method, it mentions to use function syntax to pass the name of the file to the import or export function. How to do that? Also how can I mention the file address folder?
Stephen23
Stephen23 2020 年 2 月 24 日
編集済み: Stephen23 2020 年 2 月 25 日
"...it mentions to use function syntax to pass the name of the file to the import or export function. How to do that?"
The examples on that page use function syntax, so just follow those examples. If you want to know more:
"Also how can I mention the file address folder?"
Use fullfile to create an absolute/relative filename:

サインインしてコメントする。

採用された回答

Stephen23
Stephen23 2020 年 2 月 24 日
編集済み: Stephen23 2020 年 2 月 25 日
P = 'relative/absolute path to the folder where the files are saved';
S = dir(fullfile(P,'*.csv'));
for k = 1:numel(S)
F = fullfile(P,S(k).name);
S(k).data = csvread(F);
end
  5 件のコメント
Sara Nasir
Sara Nasir 2022 年 2 月 28 日
How should I skip the first line when attaempting to read the file by csvread command?
I know that fopen can be used but its giving that identifier error.
Stephen23
Stephen23 2022 年 2 月 28 日
編集済み: Stephen23 2022 年 2 月 28 日
"How should I skip the first line when attaempting to read the file by csvread command?"
Specify the row option: csvread(filename,1,0)
"I know that fopen can be used but its giving that identifier error."
CSVREAD does not use FOPEN.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by