Return list of unlimited dimensions in group
unlimdimIDs = netcdf.inqUnlimDims(ncid)
unlimdimIDs = netcdf.inqUnlimDims(ncid)
returns
the IDs of all unlimited dimensions in the group specified by ncid
.
|
Identifier of a NetCDF file, returned by |
|
An array containing the identifiers of each unlimited dimension. |
This example opens the NetCDF sample dataset and gets the IDs of all the unlimited dimensions.
ncid = netcdf.open('example.nc','NOWRITE'); dimids = netcdf.inqUnlimDims(ncid) dimids = [] netcdf.close(ncid);
This function corresponds to the nc_inq_unlim_dims
function
in the NetCDF library C API.
For copyright information, read the netcdfcopyright.txt
and mexnccopyright.txt
files.
netcdf.defDim
| netcdf.inqDim
| netcdf.inqDimID
| netcdf.inqDimIDs
| netcdf.renameDim