nccreate overwrite existing file
7 ビュー (過去 30 日間)
古いコメントを表示
How to use nccreate to create a new file clobbering any previous file with the same name?
Matlab's question-begging documentation doesn't help. Here's matlab's info on nccreate:
"If filename does not exist, then nccreate creates the file using the netcdf4_classic format."
Great, but if the filename does exist?
0 件のコメント
採用された回答
Stijn Haenen
2019 年 11 月 26 日
Have you tried this:
if exist(filename)
delete filename
end
nccreate.....
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で NetCDF についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!