cdflib.setFormat
Specify format of Common Data Format (CDF) file
Syntax
cdflib.setFormat(cdfId,
format
)
Description
cdflib.setFormat(cdfId,
specifies the format of a Common Data Format (CDF) file.format
)
Input Arguments
|
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 |
Examples
Create a CDF file and specify its format. To run this example, you must have write permission in your current folder.
cdfId = cdflib.create("your_file.cdf"); % Check current format format = cdflib.getFormat(cdfId)
format = 'SINGLE_FILE'
% Specify multifile format cdflib.setFormat(cdfId,"MULTI_FILE") % Check format again format = cdflib.getFormat(cdfId)
format = 'MULTI_FILE'
% Clean up cdflib.delete(cdfId) clear cdfId
Tips
This function corresponds to the CDF library C API routine
CDFsetFormat
.To use this function, you must be familiar with the CDF C interface. You can access the CDF documentation at the CDF website.