Do anyone know how to read ".nc" data?
2 ビュー (過去 30 日間)
古いコメントを表示
Dear mathcoders, I have been searching how to read a file downloaded from Copernicus its extension is .nc I was attempting to deal it with ncread, but I am not sure of the procedure, could you give me a workaround to handle this?
vardata = ncread('data_prueba','varname')
Error using internal.matlab.imagesci.nc/openToRead (line 1274)
Could not open data_prueba for reading.
Error in internal.matlab.imagesci.nc (line 121)
this.openToRead();
Error in ncread (line 61)
ncObj = internal.matlab.imagesci.nc(ncFile);
0 件のコメント
回答 (1 件)
EmirBeg
2021 年 6 月 16 日
Try adding the .nc in your filename.
vardata = ncread('data_prueba.nc','varname');
参考
カテゴリ
Help Center および File Exchange で Downloads についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!