| Contents | Index |
[shuffle,deflate,deflateLevel] = netcdf.inqVarDeflate(ncid,varid)
[shuffle,deflate,deflateLevel] = netcdf.inqVarDeflate(ncid,varid) returns the compression parameters for the NetCDF variable specified by varid in the location specified by ncid.
ncid |
Identifier of a NetCDF file, returned by netcdf.create or netcdf.open, or of a NetCDF group, returned by netcdf.defGrp. |
varid |
Identifier of NetCDF variable, returned by netcdf.defVar. |
This example opens the NetCDF sample file and gets information about variable compression.
ncid = netcdf.open('example.nc','NOWRITE');
groupid = netcdf.inqNcid(ncid,'grid1');
varid = netcdf.inqVarID(groupid,'temp');
[shuffle,deflate,deflateLevel] = netcdf.inqVarDeflate(groupid,varid);
netcdf.close(ncid);This function corresponds to the nc_inq_var_deflate function in the netCDF library C API.
For copyright information, read the netcdfcopyright.txt and mexnccopyright.txt files.

Explore how to use MATLAB to make advancements in engineering and science.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |