Create Common Data Format (CDF) file
cdfId = cdflib.create(
filename
)
cdfId = cdflib.create(
creates a new
CDF file with the name contained in filename
)filename
. Specify
filename
as a character vector or string scalar. Returns
the CDF file identifier cdfId
.
Create a CDF file. To run this example, you must have write permission in your current directory.
cdfId = cdflib.create('myfile.cdf'); % Clean up cdflib.delete(cdfId); clear cdfId
This function corresponds to the CDF library C API routine CDFcreateCDF
.
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.