I want to xlsread in many files

1 次查看(过去 30 天)
hello.
[num txt raw] = xlsread('1.xlsx')
This code just imported only 1 file.
But i want to import many files.
After imported, in this file I want to average time data.
For example,
12:00 12:01 12:02 ... 01:00 - raw data
12:00 12:15 12:30 ...01:00 - revised data
I want to expression like resvised data in file.

采纳的回答

KSSV
KSSV 2016-7-4
xlfiles = dir('*.xlsx'); % You are in the folder of xl files
Nfiles = length(xlfiles) ; % number of xl files
% loop for each file
for i = 1:Nfiles
fname = xlfiles(i).name ; % file name
data = xlsread(fname) ; % read the file
%%do what you want %%%
end
  1 个评论
Jeong_evolution
Jeong_evolution 2016-7-4
But this code is just imported number.
I want to import with date & Time data.
And average For example,
12:00 12:01 12:02 ... 01:00 - raw data
12:00 12:15 12:30 ...01:00 - revised data
I want to expression like resvised data in file.
What should I do?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by