cdflib.getVarSparseRecords
Information about how variable handles sparse records
Syntax
stype
= cdflib.getVarSparseRecords(cdfId,varNum)
Description
returns information about how a variable in the Common Data Format
(CDF) file handles sparse records.stype
= cdflib.getVarSparseRecords(cdfId,varNum)
Input Arguments
|
Identifier of a CDF file, returned by a call to |
|
Numeric value that identifies the variable. Variable numbers are zero-based. |
Output Arguments
|
One of the following character vectors, or its numeric equivalent, that specifies how the variable handles sparse records.
To get the numeric equivalent of the constants specified by
these character vectors, use |
Examples
Open the example CDF, and then get the sparse record type of a variable in the file:
cdfId = cdflib.open("example.cdf");
stype = cdflib.getVarSparseRecords(cdfId,0)
stype = 'NO_SPARSERECORDS'
% Clean up cdflib.close(cdfId) clear cdfId
Tips
This function corresponds to the CDF library C API routine
CDFgetzVarSparseRecords
.To use this function, you must be familiar with the CDF C interface. You can access the CDF documentation at the CDF website.