MATLAB Function Reference |
Syntax
cdfwrite(file, variablelist) cdfwrite(..., 'PadValues', padvals) cdfwrite(..., 'GlobalAttributes', gattrib) cdfwrite(..., 'VariableAttributes', vattrib) cdfwrite(..., 'WriteMode',mode
) cdfwrite(..., 'Format',format
)
Description
cdfwrite(file,variablelist)
writes out a Common Data Format (CDF) file, specified in the string file
. The variablelist
argument is a cell array of ordered pairs, each of which comprises a CDF variable name (a string) and the corresponding CDF variable value. To write out multiple records for a variable, put the values in a cell array where each element in the cell array represents a record.
Note
Because cdfwrite creates temporary files, both the destination directory for the file and the current working directory must be writeable.
|
cdfwrite(...,'PadValues',padvals)
writes out pad values for given variable names. padvals
is a cell array of ordered pairs, each of which comprises a variable name (a string) and a corresponding pad value. Pad values are the default values associated with the variable when an out-of-bounds record is accessed. Variable names that appear in padvals
must appear in variablelist
.
cdfwrite(...,'GlobalAttributes',gattrib)
writes the structure gattrib
as global metadata for the CDF file. Each field of the structure is the name of a global attribute. The value of each field contains the value of the attribute. To write out multiple values for an attribute, put the values in a cell array where each element in the cell array represents a record.
cdfwrite(..., 'VariableAttributes', vattrib)
writes the structure vattrib
as variable metadata for the CDF. Each field of the struct is the name of a variable attribute. The value of each field should be an M-by-2 cell array where M is the number of variables with attributes. The first element in the cell array should be the name of the variable and the second element should be the value of the attribute for that variable.
cdfwrite(...,'WriteMode',
where mode
),
mode
is either 'overwrite'
or 'append'
, indicates whether or not the specified variables should be appended to the CDF file if the file already exists. By default, cdfwrite
overwrites existing variables and attributes.
cdfwrite(...,'Format',
where format
),
format
is either 'multifile'
or 'singlefile'
, indicates whether or not the data is written out as a multifile CDF. In a multifile CDF, each variable is stored in a separate file with the name *.vN
, where N
is the number of the variable that is written out to the CDF. By default, cdfwrite
writes out a single file CDF. When 'WriteMode'
is set to 'Append'
, the 'Format'
option is ignored, and the format of the preexisting CDF is used.
Examples
Write out a file 'example.cdf'
containing a variable 'Longitude'
with the value [0:360]
.
Write out a file 'example.cdf'
containing variables 'Longitude'
and 'Latitude'
with the variable 'Latitude'
having a pad value of 10 for all out-of-bounds records that are accessed.
Write out a file 'example.cdf'
, containing a variable 'Longitude'
with the value [0:360]
, and with a variable attribute of 'validmin'
with the value 10.
varAttribStruct.validmin = {'longitude' [10]}; cdfwrite('example', {'Longitude' 0:360}, 'VarAttribStruct',... varAttribStruct);
See Also
cd (ftp) | ceil |
© 1994-2005 The MathWorks, Inc.