Statistics Toolbox | ![]() ![]() |
Writes tabular data to the file system
Syntax
Description
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 tblwrite(dat
a,'varnames','casenames')
data
starting in the (2,2) position.
'varnames'
is a string matrix containing the variable names. 'casenames'
is a string matrix containing the names of each case in the first column. data
is a numeric matrix with a value for each variable-case pair.
allows command line specification of a file in the current directory, or the complete pathname of any file in the string tblwrite(dat
a,'varnames','casenames','filename')
'filename'
.
Example
Continuing the example from tblread
:
tblwrite(data,varnames,casenames,'sattest.dat') type sattest.dat Male Female Verbal 470 530 Quantitative 520 480
![]() | tblread | tcdf | ![]() |