Basic characteristics of Common Data Format (CDF) file
info = cdflib.inquire(cdfId)
info = cdflib.inquire(cdfId)
returns basic
information about a Common Data Format (CDF) file.
|
Identifier of a CDF file, returned by a call to |
|
A structure containing the following fields:
|
Open the example CDF file, and then get basic information about the file:
cdfId = cdflib.open('example.cdf'); info = cdflib.inquire(cdfId) info = encoding: 'IBMPC_ENCODING' majority: 'ROW_MAJOR' maxRec: 23 numVars: 5 numvAttrs: 1 numgAttrs: 3
This function corresponds to the CDF library C API routines CDFinquireCDF
and CDFgetNumgAttributes
.
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.