| Contents | Index |
cdflib.renameAttr(cdfId,attrNum,newName)
cdflib.renameAttr(cdfId,attrNum,newName) renames an attribute in a Common Data Format (CDF) file.
cdfId identifies the CDF file. attrNum is a numeric value that identifies the attribute. Attribute numbers are zero-based. newName is a text string that specifies the name you want to assign to the attribute.
Create a CDF, create an attribute in the CDF, and then rename the attribute. To run this example, you must be in a writable folder.
cdfid = cdflib.create('your_file.cdf');
% Create an attribute
attrNum = cdflib.createAttr(cdfid,'Purpose','global_scope');
% Rename the attribute
cdflib.renameAttr(cdfid, attrNum, 'NewPurpose');
% Check the name of the attribute
attrName = cdflib.getAttrName(cdfid,anum)
attrName =
NewPurpose
% Clean up
cdflib.delete(cdfid);
clear cdfid
This function corresponds to the CDF library C API routine CDFrenameAttr. 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 |