Name of Common Data Format (CDF) file
name = cdflib.getName(cdfId)
name = cdflib.getName(cdfId)
returns the
name of the CDF file identified by cdfId
.
Open the example CDF file and get the name of the file. The path name returned for your installation will be different.
cdfId = cdflib.open('example.cdf'); name = cdflib.getName(cdfId) name = yourinstallation\matlab\toolbox\matlab\demos\example % Clean up cdflib.close(cdfId) clear cdfId
This function corresponds to the CDF library C API routine CDFgetName
.
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.