Specify majority of variables
cdflib.setMajority(cdfId,
majority
)
cdflib.setMajority(cdfId,
specifies the majority of variables in a Common Data Format (CDF)
file. majority
)
|
Identifier of a CDF file, returned by a call to | ||||
|
One of the following format values specified as a character vector or string scalar, or its numeric equivalent.
To get the numeric equivalent of these format values, use
|
Create a CDF file and specify the majority used by variables in the file. To run this example, you must have write permission in your current folder.
cdfId = cdflib.create('your_file.cdf') % Specify the majority used by variables in the file cdflib.setMajority(cdfId,'COLUMN_MAJOR'); % Check the majority value majority = cdflib.getMajority(cdfId) majority = COLUMN_MAJOR % Clean up cdflib.delete(cdfId) clear cdfId
This function corresponds to the CDF library C API routine CDFsetMajority
.
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.