Return ID of named group
childGroupId = netcdf.inqNcid(ncid,childGroupName)
childGroupId = netcdf.inqNcid(ncid,childGroupName)
returns
the ID of the child group, specified by the name childGroupName
,
in the file or group specified by ncid
.
|
Identifier of a NetCDF file, returned by |
|
Character vector or string scalar specifying the name of a NetCDF group. |
|
Identifier of a NetCDF group. |
This example opens the sample NetCDF dataset and then gets the ID of a group in the dataset.
ncid = netcdf.open('example.nc','nowrite'); gid = netcdf.inqNcid(ncid,'grid1'); netcdf.close(ncid);
This function corresponds to the nc_inq_ncid function in the
netCDF library C API. Read the files netcdfcopyright.txt
and mexnccopyright.txt
for
more information.