| Contents | Index |
[datatype,numElements] = cdflib.inquireAttrgEntry(cdfId,attrNum,entryNum)
[datatype,numElements] = cdflib.inquireAttrgEntry(cdfId,attrNum,entryNum) returns the data type and the number of elements for a global attribute entry in a Common Data Format (CDF) file.
datatype |
Text string identifying a CDF data type. For a list of CDF data types, see cdflib.putAttrgEntry |
numElements |
Numeric value indicating the number of elements in the entry. |
Open the example CDF, and then get information about entries associated with a global attribute in the file.
cdfid = cdflib.open('example.cdf');
% Any of the first three attributes have global scope.
attrscope = cdflib.getAttrScope(cdfid,0)
attrscope =
GLOBAL_SCOPE
% Get information about the first entry for this attribute
[dtype numel] = cdflib.inquireAttrgEntry(cdfid,0,0)
dtype =
cdf_char
numel =
23
% Clean up
cdflib.close(cdfid);
clear cdfidThis function corresponds to the CDF library C API routine CDFinquireAttrgEntry. 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.
cdflib.inquireAttr | cdflib.inquireAttrEntry

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 |