cdflib.getVarsMaxWrittenRecNum
Maximum written record number for CDF file
Syntax
maxrec = cdflib.getVarsMaxwrittenRecNum(cdfId)
Description
maxrec = cdflib.getVarsMaxwrittenRecNum(cdfId)
returns the maximum record number written for all variables in a Common
Data Format (CDF) file.
cdfId
identifies the CDF file. Record numbers
are zero-based.
Examples
Open the example CDF, and then determine the maximum number of records written to the file:
cdfid = cdflib.open('example.cdf'); % Determine the maximum record number of the records written maxRecNum = cdflib.getVarsMaxWrittenRecNum(cdfid) maxRecNum = 23 % Clean up cdflib.close(cdfid)
References
This function corresponds to the CDF library C API routine CDFgetzVarsMaxWrittenRecNum
.
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.