how to import from a csv with a different file name?

조회 수: 1 (최근 30일)
Cristian Martin
Cristian Martin 2020년 7월 8일
답변: madhan ravi 2020년 7월 9일
Hi guys!
I need to import a different data's from a lot of csv. In this example is about frews.csv. Every file has a different name, and i don't want to change every time the file name.
filename = 'C:\Users\Jhon\Desktop\MATLAB\frews.csv';
delimiter = ',';
formatSpec = '%*s%f%[^\n\r]';
fileID = fopen(filename,'r');
dataArray = textscan(fileID, formatSpec, 'Delimiter', delimiter, 'ReturnOnError', false);
fclose(fileID);
frews = [dataArray{1:end-1}];
clearvars filename delimiter formatSpec fileID dataArray ans;
% thanks for your help.

채택된 답변

madhan ravi
madhan ravi 2020년 7월 9일
https://www.mathworks.com/help/matlab/import_export/process-a-sequence-of-files.html See the last example to read multiple files with different names using dir()

추가 답변 (1개)

Kanupriya Singh
Kanupriya Singh 2020년 7월 8일
You could store all the different filenames in an array and then use a for loop to iterate over this array, choosing one filename at a time, and execute your code inside the loop.
filenames = ['example1.csv' 'example2.csv' 'example3.csv'];
for idx = 1:length(filenames)
delimiter = ',';
formatSpec = '%*s%f%[^\n\r]';
fileID = fopen(filenames(i),'r');
%...
end

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by