필터 지우기
필터 지우기

Convert cell array to filename

조회 수: 19 (최근 30일)
Katherine
Katherine 2023년 7월 14일
답변: Anamika 2023년 7월 17일
In my cell array I have the name of a file. In the next section of my matlab I would like it to find this file, How can I convert the value in my cell array toa file name

답변 (3개)

Star Strider
Star Strider 2023년 7월 14일

Image Analyst
Image Analyst 2023년 7월 14일
Let's say element 1 of your cell array has a string that is the filename, like
ca{1} = 'C:\Users\Katherine\Documents\MATLAB\work\someProject\Project Data.csv';
Now you can use that in your MATLAB code like this:
fullFileName = ca{1}; % Extract filename from cell.
% Check if file exists.
if isfile(fullFileName)
% File exists. Read in its data.
data = readmatrix(fullFileName);
else
% File does not exist. Alert the user.
warningMessage = sprintf('Warning: "%s" does not exist!', fullFileName);
fprintf('%s\n', warningMessage);
uiwait(warndlg(warningMessage));
data = [];
end

Anamika
Anamika 2023년 7월 17일
To convert the value in your cell array to a file name, you can can use the curly braces `{}` indexing operator in MATLAB. I can give you an example, and here it is:
% assuming your cell array is named 'fileNames'
fileName = fileNames{1}; % getting the 1st element of the cell array
% you can use 'fileName' as the file name in your code
% suppose you want to read the contents of the file
fileContents = fileread(fileName);
In the above code, `fileNames{1}` is getting the 1st element of the cell array `fileNames` and assigns it to the variable `fileName`now you can then use `fileName` as the file name in your subsequent code.
Hope it will help you
~Thanks

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by