cdflib.getCompression
Compression settings
Syntax
[ctype,cparms,cpercentage] = cdflib.getCompression(cdfId)
Description
[ctype,cparms,cpercentage] = cdflib.getCompression(cdfId)
returns information about the compression settings of a Common Data
Format (CDF) file.
Input Arguments
|
Identifier of a CDF file, returned by a call to |
Output Arguments
|
Character vector specifying compression type, such as |
|
The value of the parameter associated with the type of compression.
For example, for the |
|
The rate of compression, expressed as a percentage. |
Examples
Open the example CDF file and check the compression settings in the file.
cdfId = cdflib.open("example.cdf");
[ctype,cparms,cpercentage] = cdflib.getCompression(cdfId)
ctype = 'GZIP_COMPRESSION' cparms = 7 cpercentage = 26
% Clean up cdflib.close(cdfId) clear cdfId
Tips
This function corresponds to the CDF library C API routine
CDFgetCompression
.To use this function, you must be familiar with the CDF C interface. You can access the CDF documentation at the CDF website.