Retrieve name of group
groupName = netcdf.inqGrpName(ncid)
groupName = netcdf.inqGrpName(ncid)
returns
the name of a group specified by ncid
.
|
Identifier of NetCDF file, returned by |
|
Character vector containing the name of the group specified
by |
This example opens the NetCDF sample file and gets the names of groups in the dataset.
ncid = netcdf.open('example.nc','nowrite'); name = netcdf.inqGrpName(ncid); netcdf.close(ncid);
This function corresponds to the nc_inq_grpname
function
in the NetCDF library C API.
For copyright information, read the netcdfcopyright.txt
and mexnccopyright.txt
files.