| Contents | Index |
maxrec = cdflib.getVarsMaxwrittenRecNum(cdfId)
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.
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 =
0
% Clean up
cdflib.close(cdfid)
This function corresponds to the CDF library C API routine CDFgetzVarsMaxWrittenRecNum. 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 |