| Contents | Index |
padvalue = cdflib.getVarPadValue(cdfId,varNum)
padvalue = cdflib.getVarPadValue(cdfId,varNum) returns the pad value used with a variable in a Common Data Format (CDF) file.
cdfId identifies the CDF file. varNum is a numeric value that identifies the variable. Variable numbers are zero-based.
Open the example CDF, and then determine the pad value for a variable:
cdfid = cdflib.open('example.cdf');
% Check pad value of variable in the file.
padval = cdflib.getVarPadValue(cdfid,0)
padval =
0
% Clean up.
cdflib.close(cdfid);
clear cdfidThis function corresponds to the CDF library C API routine CDFgetzVarPadValue. 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.

Explore how to use MATLAB to make advancements in engineering and science.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |