error using textscan with csv files
2 ビュー (過去 30 日間)
古いコメントを表示
I have been given a code to process some data in a csv file. When I run this I get the error below. Can anybody help?
fid = fopen('time.csv');
out = textscan(fid,'%s %f %f %s','delimiter',',','headerlines',1);
fclose(fid);
Error using textscan
Invalid file identifier. Use fopen to generate a valid file identifier.
0 件のコメント
回答 (1 件)
Walter Roberson
2022 年 2 月 16 日
The fopen failed. The file does not exist in the matlab path, or you do not have permission. if you used the two-output form of fopen you would get a message about why it failed.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Text Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!