Open existing Common Data Format (CDF) file
cdfId = cdflib.open(
filename
)
cdfId = cdflib.open(
opens an
existing Common Data Format (CDF) file. filename
)filename
is a
character vector or string scalar that identifies the file.
This function returns a CDF file identifier, cdfId
.
All CDF files opened this way have the zMode
set
to zModeon2
. Refer to the CDF User's
Guide for information about zModes
.
Open the example CDF file:
cdfId = cdflib.open('example.cdf'); % Clean up cdflib.close(cdfId) clear cdfId
This function corresponds to the CDF library C API routine CDFopenCDF
.
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.