Datastore function can't find files

9 ビュー (過去 30 日間)
Yuliano Moscoso Yarin
Yuliano Moscoso Yarin 2019 年 10 月 12 日
コメント済み: Walter Roberson 2019 年 11 月 26 日
Hello there ,
I trying to run the datastore function on macOS but I'm getting this " Cannot find files or folders matching" error , the curious thing is the same code run without any problem on Windows 10.
  2 件のコメント
Dushsyant K Rajamohan
Dushsyant K Rajamohan 2019 年 11 月 26 日
Hey there,
I believe im trying to run the same code as yours,unfortunately the term 'variableNames" are not detected,may I know why and how can I solve it? Thank you
urgent.JPG
Walter Roberson
Walter Roberson 2019 年 11 月 26 日
variableNames should be set to a cell array of character vectors that is the names of the variables you want to extract from the csv file. If the csv file has a header, the variable names correspond to the header elements. If the csv file has no header, then the variable names are Var followed by a column number.

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

採用された回答

Walter Roberson
Walter Roberson 2019 年 10 月 12 日
MacOS and Linux do not use \ as directory separators. You should be using fullfile()
files = fullfile(pwd, 'Data', [filenames '.csv']);
  1 件のコメント
Yuliano Moscoso Yarin
Yuliano Moscoso Yarin 2019 年 10 月 13 日
You're right, thank you.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by