How can i read in and work on multiple files with the similar name structure but different from each other by one or two characters in their name?
3 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a 200 .nc files with name : OCS_iso1.cam.h2.00X-Y.nc with X and Y variables in the names, X=(01:01:100) and Y=(01:01:12).
I was wondering if there's a way to read in the files without loading them one by one and also read information from these files (note that all the arrays in these .NC files have same names) (example: lets say there is an array called lev(24*19*66)) and work with them such as: summing them up or taking average, etc.
thank you
0 个评论
采纳的回答
Walter Roberson
2018-3-8
"I was wondering if there's a way to read in the files without loading them one by one"
No, you need to read each of them. You can create a loop that names them one by one automatically, however
for this_x = 1:100
for this_y = 1:12
this_file = sprintf('OCS_iso1.cam.h2.00%02d-%02d.nc', this_x, this_y );
data = ncread(this_file, ....);
end
end
2 个评论
Walter Roberson
2018-3-8
As a matter of programming convention, I use this_* to refer to the one particular value that I am working on now, and I use a more collective name to refer to the collection of names. So in the above if I did not need to know what the file names were later on, then
for this_x = 1:13
for this_y=1:12
this_file = sprintf('OCS_iso1.cam.h2.00%02d-%02d.nc', this_x, this_y );
data{this_x,this_y}= ncread(this_file,...);
end
end
and if I did need to know the file names later on,
for this_x = 1:13
for this_y=1:12
this_file = sprintf('OCS_iso1.cam.h2.00%02d-%02d.nc', this_x, this_y );
filenames{this_x, this_y} = this_file;
data{this_x,this_y}= ncread(this_file,...);
end
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!