cdflib.getNumAttrEntries
Number of entries for attribute with variable scope
Syntax
nentries = cdflib.getNumAttrEntries(cdfId,attrNum)
Description
nentries = cdflib.getNumAttrEntries(cdfId,attrNum)
returns the number of entries for the specified attribute in the Common
Data Format (CDF) file.
cdfId
identifies the CDF file.
attrNum
is a numeric value that specifies
the attribute. Attribute numbers are zero-based. The attribute must
have variable scope.
Examples
Open the example CDF, find an attribute with variable scope, and determine how many entries are associated with the attribute:
cdfId = cdflib.open("example.cdf"); % Get the number of an attribute with variable scope attrNum = cdflib.getAttrNum(cdfId,"Description"); % Check that scope of attribute is variable attrScope = cdflib.getAttrScope(cdfId,attrNum)
attrScope = 'VARIABLE_SCOPE'
% Determine the number of entries for the attribute
attrEntries = cdflib.getNumAttrEntries(cdfId,attrNum)
attrEntries = 4
% Clean up cdflib.close(cdfId) clear cdfId
Tips
This function corresponds to the CDF library C API routine
CDFgetNumAttrzEntries
.To use this function, you must be familiar with the CDF C interface. You can access the CDF documentation at the CDF website.