how to display all of the 'nc' files ? I have total number of 52 files, and when i am run the code, it gives the output as '0*1 struct ' ? The code is given beolw

2 views (last 30 days)
file = dir('.nc,')

Answers (1)

KSSV
KSSV on 16 May 2023
thepath = '' % give you path here
ncfiles = dir([thepath,'\*.nc']) ;
N = length(ncfiles) ; % total files
for i = 1:N
ncfile = fullfile(ncfiles(1).folder,ncfiles(i).name) ;
ncdips(ncfile)
% Load the data use ncread
% do what you want
end

Categories

Find more on Agriculture in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!