Specify format of Common Data Format (CDF) file
cdflib.setFormat(cdfId,
format
)
cdflib.setFormat(cdfId,
specifies the format of a Common Data Format (CDF) file.format
)
|
Identifier of a CDF file, returned by a call to | ||||
|
Format of CDF file, specified as a character vector or string scalar containing one of these format values.
You can also specify |
Create a CDF file and specify its format. To run this example, you must have write permission in your current folder.
cdfId = cdflib.create('mycdffile.cdf'); % Specify multifile format. cdflib.setFormat(cdfId, 'MULTI_FILE'); % Check format. format = cdflib.getFormat(cdfId) format = MULTI_FILE % Clean up cdflib.delete(cdfId) clear cdfId
This function corresponds to the CDF library C API routine CDFsetFormat
.
To use this function, you must be familiar with the CDF C
interface. Read the CDF documentation at the CDF website
.
For copyright information, see the cdfcopyright.txt
file.