- 积分
- 11
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-5-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
各位前辈!打扰了,小弟在读取.nc文件时总是报错,代码如下:
clear all;clc;
ncdisp('E:\data\sst\SST_global_10km_20140101_20140901.nc','/', 'full');
ncid1=netcdf.open('E:\data\sst\SST_global_10km_20140101_20140901.nc','NC_NOWRITE');
显示结果如下:
Source:
E:\data\sst\SST_global_10km_20140101_20140901.nc
Format:
classic
Dimensions:
lat = 242
dep = 50
time = 12
但是在执行代码:
[varname, xtype, dimids, numatts] = netcdf.inqVar(ncid1,0);
报错如下:
Error using netcdflib
The NetCDF library encountered an error during execution of 'inqVar' function - 'Variable not found
(NC_ENOTVAR)'.
Error in netcdf.inqVar (line 27)
[varname,xtype,dimids,natts] = netcdflib('inqVar', ncid, varid);
Error in c1 (line 11)
[varname, xtype, dimids, numatts] = netcdf.inqVar(ncid1,0);
|
|