tblwrite
Write tabular data to file
Syntax
tblwrite(data,varnames,casenames)
tblwrite(data,varnames,casenames,filename
)
tblwrite(data,varnames,casenames,filename
,delimiter
)
Description
tblwrite(data,varnames,casenames)
displays
the File Open dialog box for interactive
specification of the tabular data output file. The file format has
variable names in the first row, case names in the first column and data
starting
in the (2,2) position.
varnames
is a character matrix or string array containing the variable
names. casenames
is a character matrix or string array containing the
names of each case in the first column. data
is a character matrix or
string array with a value for each variable-case pair.
tblwrite(data,varnames,casenames,
specifies a file in the current folder, or the complete path name of any file in the
character vector or string scalar filename
)filename
.
tblwrite(data,varnames,casenames,
writes to the file using filename
,delimiter
)
as the
delimiting character. The following table lists the accepted values for
delimiter
and their equivalent
names.delimiter
Value | Name |
---|---|
' ' | 'space' |
'\t' | 'tab' |
',' | 'comma' |
';' | 'semi' |
'|' | 'bar' |
The default value of
is delimiter
'space'
.
Examples
Continuing the example from tblread
:
tblwrite(data,varnames,casenames,'sattest.dat') type sattest.dat Male Female Verbal 470 530 Quantitative 520 480
Version History
Introduced before R2006a