| Contents | Index |
cdflib.deleteAttrEntry(cdfId,attrNum,entryNum)
cdflib.deleteAttrEntry(cdfId,attrNum,entryNum) deletes an entry from an attribute in a Common Data Format (CDF) file.
Create a CDF, and then create an attribute in the file. Write a value to an entry for the attribute, and then delete the entry. To run this example, you must be in a writable folder.
cdfid = cdflib.create('your_file.cdf');
% Initially the file contains no attributes, global or variable.
info = cdflib.inquire(cdfid)
info =
encoding: 'IBMPC_ENCODING'
majority: 'ROW_MAJOR'
maxRec: -1
numVars: 0
numvAttrs: 0
numgAttrs: 0
% Create an attribute with variable scope in the file.
attrNum = cdflib.createAttr(cdfid,'my_var_scope_attr','variable_scope');
% Write a value to an entry for the attribute
cdflib.putAttrEntry(cdfid,attrNum,0,'CDF_CHAR','My attr value');
% Get the value of the attribute entry
value = cdflib.getAttrEntry(cdfid,attrNum,0)
value =
My attr value
% Delete the entry
cdflib.deleteAttrEntry(cdfid,attrNum,0);
% Now try to view the value of the entry
% Should return NO_SUCH_ENTRY failure.
value = cdflib.getAttrEntry(cdfid,attrNum,0) % Should fail
% Clean up
cdflib.delete(cdfid);
clear cdfidThis function corresponds to the CDF library C API routine CDFdeleteAttrzEntry. 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.

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 |