Main Content

netcdf.inqDim

返回 netCDF 维度名称和长度

语法

[dimname, dimlen] = netcdf.inqDim(ncid,dimid)

说明

[dimname, dimlen] = netcdf.inqDim(ncid,dimid) 返回 dimid 指定的维度的名称 dimname 和长度 dimlen。如果 ndims 是针对 netCDF 文件所定义的维数目,那么每个维度 ID 在 0 至 ndims-1 之间。例如,第一维的维度标识符是 0,第二维是 1,依此类推。

ncidnetcdf.createnetcdf.open 返回的 netCDF 文件标识符。

此函数对应于 netCDF 库 C API 中的 nc_inq_dim 函数。要使用此函数,应该熟悉 netCDF 编程范式。

示例

本例打开 MATLAB® 随附的 netCDF 示例文件 example.nc

ncid = netcdf.open('example.nc','NC_NOWRITE');

% Get name and length of first dimension
[dimname, dimlen] = netcdf.inqDim(ncid,0)

dimname =

x


dimlen =

    50

另请参阅