| Contents | Index |
cdflib.setMajority(cdfId,majority)
cdflib.setMajority(cdfId,majority) specifies the majority of variables in a Common Data Format (CDF) file.
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 cdfIdThis function corresponds to the CDF library C API routine CDFsetMajority. 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.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |