필터 지우기
필터 지우기

nccreate overwrite existing file

조회 수: 2 (최근 30일)
oceanmod
oceanmod 2019년 11월 26일
답변: oceanmod 2019년 11월 26일
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?

채택된 답변

Stijn Haenen
Stijn Haenen 2019년 11월 26일
Have you tried this:
if exist(filename)
delete filename
end
nccreate.....

추가 답변 (1개)

oceanmod
oceanmod 2019년 11월 26일
Thanks for your response. Low-level netcdf functions like netcdf.create have an explicit clobber option. Am baffled why the corresponding high-level functions (i.e., nccreate) would not have a similar option. It looks like what you suggest might be the only way.

카테고리

Help CenterFile Exchange에서 NetCDF에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by