How to import randomly named files from a folder into different matrices

조회 수: 1 (최근 30일)
Jørgen
Jørgen 2019년 7월 1일
편집: Jan 2019년 7월 1일
Hi,
I have the same problem as stated here https://se.mathworks.com/matlabcentral/answers/1810-opening-files-with-randomly-varying-file-names, but the problem is to go further from Olegs answer. Once I have the matrix called names, how to I add the matrix content into a path directory ( for example like
Matrix = fopen('C:\Users\Oleg\Desktop\Nuova cartella\names(1)');
where names(1) should be transfered into the name of the file currently in names(1).
  댓글 수: 1
Stephen23
Stephen23 2019년 7월 1일
What exactly is a "path directory" and what does it mean to "...add the matrix content into a path directory" ?
The sentence "...where names(1) should be transfered into the name of the file currently in names(1)" is unclear: can you provide an example of what you are trying to achieve? Are you trying to rename files?

댓글을 달려면 로그인하십시오.

답변 (1개)

Andy
Andy 2019년 7월 1일
If I understand correctly, try
filename=strcat('c:\Users\Oleg\Desktop\Nuevo cartella\',names(1,:));
matrix=fopen(filename);
Of course, they can be combined into one line.
Hope this is what you are after.
  댓글 수: 2
Jan
Jan 2019년 7월 1일
편집: Jan 2019년 7월 1일
Most likely names is not a char matrix. Then, if it is a cell string:
filename=strcat('c:\Users\Oleg\Desktop\Nuevo cartella\', names{1});
Remember, that strcat removes leading spaces smartly. Although leading spaces are a bad idea for file names, this would be safer:
filename = ['c:\Users\Oleg\Desktop\Nuevo cartella\', names{1}];
[EDITED, after Stephen's comment] And even better, because it cares for the path separators:
filename = fullfile('c:\Users\Oleg\Desktop\Nuevo cartella\', names{1});
Stephen23
Stephen23 2019년 7월 1일
It is recommended to use fullfile rather than concatenating strings together.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by