cdflib.setMajority
Specify majority of variables
Syntax
cdflib.setMajority(cdfId,
majority
)
Description
cdflib.setMajority(cdfId,
specifies the majority of variables in a Common Data Format (CDF)
file. majority
)
Input Arguments
|
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
|
Examples
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"); % Check the default majority value majority = cdflib.getMajority(cdfId)
majority = 'ROW_MAJOR'
% 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
Tips
This function corresponds to the CDF library C API routine
CDFsetMajority
.To use this function, you must be familiar with the CDF C interface. You can access the CDF documentation at the CDF website.