| Contents | Index |
value = cdflib.getAttrgEntry(cdfId,attrNum,entryNum)
value = cdflib.getAttrgEntry(cdfId,attrNum,entryNum) returns the value of a global attribute entry in a Common Data Format (CDF) file.
Value |
Value of the entry. |
Open the example CDF, and then get the value of an entry 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 global attribute
[dtype numel] = cdflib.inquireAttrgEntry(cdfid,0,0)
dtype =
cdf_char
numel =
23
% Get the value of the first entry for this global attribute.
value = cdflib.getAttrgEntry(cdfid,0,0)
value =
This is a sample entry.
% Clean up
cdflib.close(cdfid);
clear cdfidThis function corresponds to the CDF library C API routine CDFgetAttrgEntry. To use this function, 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.getAttrEntry | cdflib.putAttrEntry | cdflib.putAttrgEntry

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 |