Reading many files in one loop
1 回表示 (過去 30 日間)
古いコメントを表示
How can I read file names and convert them to a matrix? I have more than one file and I want to read their contents in one loop of the program. Thanks
3 件のコメント
Jan
2013 年 4 月 4 日
It is not useful to convert filenames to a matrix. Do you want to import the file's contents into a matrix?
採用された回答
Ahmed A. Selman
2013 年 4 月 18 日
Download a function file called folderFiles.m.
It'll do the job for you, hopefully.
0 件のコメント
その他の回答 (2 件)
ChristianW
2013 年 4 月 4 日
doc dir
D = dir([myfolder 'my*file*name*.*']);
files = {D.name}';
2 件のコメント
Jan
2013 年 4 月 18 日
編集済み: Jan
2013 年 4 月 18 日
This means, that no file matchs the filter:
'C:\Documents and Settings\John\My Documents\MATLAB\Pic_Down*.jpg'
Perhaps you want:
'C:\Documents and Settings\John\My Documents\MATLAB\Pic_Down\*.jpg'
Note: fullfile() is much better for constructing file names than STRCAT, HORZCAT or [.].
Jan
2013 年 4 月 4 日
It is always a good idea to read the FAQ, because it is efficient to profit from the errors of others.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!