| Contents | Index |
maxrec = cdflib.getVarMaxAllocRecNum(cdfId,varNum)
maxrec = cdflib.getVarMaxAllocRecNum(cdfId,varNum) returns the record number of the maximum allocated record for 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 and record numbers are zero-based.
Open example CDF and get the maximum allocated record number for a variable:
cdfid = cdflib.open('example.cdf');
% Determine maximum record number for variable in file.
maxRecNum = cdflib.getVarMaxAllocRecNum(cdfid,0)
maxRecNum =
63
% Clean up
cdflib.close(cdfid)
clear cdfidThis function corresponds to the CDF library C API routine CDFgetzVarMaxAllocRecNum. 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 |