how to read multiple excel files, apply hampel filter and save them into folder with same names as input files
Show older comments
Hi everyone
I have 20 excel files in a folder, I want to read those files, apply hampel filter and save them into a folder with same names.
files=dir('E:\EEG_RECORDING\Male_Data\*.csv');
files=files(~[files.isdir]);
n=length(files);
for i=1:n
data=xlsread(fullfile(files(i).folder, files(i).name));
a=hampel(data,y)
end
I am not getting how to apply filter and save the files. Here is attachement of error.

3 Comments
Bob Thompson
on 16 Jul 2019
What is 'y,' and what is the class of 'data?'
What file format do you want to save your data as? The exact command is going to depend on what format you want, but you'll just add another line to the interior of your for loop to save the file.
bushra fatima
on 17 Jul 2019
Bob Thompson
on 17 Jul 2019
Making a file name within a loop is usually accomplished by concatonating a string. I will provide an example, but you will have to change it to come up with your specific desired output.
y = [files(i).folder,'\output_',num2str(i),'.csv'];
Answers (1)
Mario Chiappelli
on 18 Jul 2019
0 votes
This task would be a lot easier to accomplish in Visual Basic (VBA).
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!