| Contents | Index |
ngatts = cdflib.getNumgAttributes(cdfId)
ngatts = cdflib.getNumgAttributes(cdfId) returns the total number of global attributes in a Common Data Format (CDF) file. cdfId identifies the CDF file.
Open the example CDF and find out how many global attributes are in the file:
cdfid = cdflib.open('example.cdf');
% Determine the number of global attributes in the file.
numgAttrs = cdflib.getNumgAttributes(cdfid)
numgAttrs =
3
% Clean up
cdflib.close(cdfid);
This function corresponds to the CDF library C API routine CDFgetNumgAttributes. To use these functions, you must be familiar with the CDF C interface. Read the CDF documentation at the CDF Web site. For copyright information, see the cdfcopyright.txt file.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |