Automate function and text reading tasks in MATLAB
2 次查看(过去 30 天)
显示 更早的评论
I need help automating some of my work:
I have several txt files I am using dlmread to bring into matlab, and then manipulate with functions.
Right now I am bringing in each file, and changing my function each time to account for added input.
Example abbreviated:
1) dlmread(file)
2) call the function ( file)
3) function [] = name[filea,fileb,filec]
body: combine/change a, b, c etc
It is tedious to manually add lines of code to step 1 for each file ( many files), and to change step 2 and the function for each new variable.
Is there a way to have matlab automatically take all txt files from a folder, for example, then read them into a function that accounts for the number of files?
I am new into deep programming in MATLAB. Any help would be appreciated.
采纳的回答
Azzi Abdelmalek
2015-7-22
编辑:Azzi Abdelmalek
2015-7-22
f='C:\Users\Documents\MATLAB' % The folder where your files are located
d=dir(fullfile(f,'*.txt'))
file={d.name}
for k=1:numel(file)
data{k}=dlmread(fullfile(f,file{k}))
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import and Export 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!