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 ビュー (過去 30 日間)
Jincy
Jincy 2023 年 5 月 16 日
コメント済み: Jincy 2023 年 5 月 16 日
file = dir('.nc,')
  2 件のコメント
DGM
DGM 2023 年 5 月 16 日
You're looking for one file called '.nc'. You probably should be looking for '*.nc', though a more comprehensive path expression (e.g. including the absolute path prefix) might be more robust.

サインインしてコメントする。

回答 (1 件)

KSSV
KSSV 2023 年 5 月 16 日
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

カテゴリ

Help Center および File ExchangeAgriculture についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by