This file is indexed.

/usr/share/octave/packages/statistics-1.3.0/tblwrite.m is in octave-statistics 1.3.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
## Copyright (C) 2008 Bill Denney <bill@denney.ws>
##
## This program is free software; you can redistribute it and/or modify it under
## the terms of the GNU General Public License as published by the Free Software
## Foundation; either version 3 of the License, or (at your option) any later
## version.
##
## This program is distributed in the hope that it will be useful, but WITHOUT
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
## details.
##
## You should have received a copy of the GNU General Public License along with
## this program; if not, see <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @deftypefn {Function File} {} tblwrite (@var{data}, @var{varnames}, @var{casenames}, @var{filename})
## @deftypefnx {Function File} {} tblwrite (@var{data}, @var{varnames}, @var{casenames}, @var{filename}, @var{delimeter})
## Write tabular data to an ascii file.
##
## @var{data} is written to an ascii data file named @var{filename} with
## an optional @var{delimeter}.  The delimeter may be any single
## character or
## @itemize
## @item "space" " " (default)
## @item "tab" "\t"
## @item "comma" ","
## @item "semi" ";"
## @item "bar" "|"
## @end itemize
##
## The @var{data} is written starting at cell (2,2) where the
## @var{varnames} are a char matrix or cell vector written to the first
## row (starting at (1,2)), and the @var{casenames} are a char matrix
## (or cell vector) written to the first column (starting at (2,1)).
## @seealso{tblread, csv2cell, cell2csv}
## @end deftypefn

function tblwrite (data, varnames, casenames, f="", d=" ")

  ## Check arguments
  if nargin < 4 || nargin > 5
    print_usage ();
  endif
  varnames = __makecell__ (varnames, "varnames");
  casenames = __makecell__ (casenames, "varnames");
  if numel (varnames) != columns (data)
    error ("tblwrite: the number of rows (or cells) in varnames must equal the number of columns in data")
  endif
  if numel (varnames) != rows (data)
    error ("tblwrite: the number of rows (or cells) in casenames must equal the number of rows in data")
  endif

  if isempty (f)
    ## FIXME: open a file dialog box in this case when a file dialog box
    ## becomes available
    error ("tblread: filename must be given")
  endif
  [d err] = tbl_delim (d);
  if ! isempty (err)
    error ("tblwrite: %s", err)
  endif

  dat = cell (size (data) + 1);
  dat(1,2:end) = varnames;
  dat(2:end,1) = casenames;
  dat(2:end,2:end) = mat2cell (data,
                               ones (rows (data), 1),
                               ones (columns (data), 1));;
  cell2csv (f, dat, d);

endfunction

function x = __makecell__ (x, name)
  ## force x into a cell matrix
  if ! iscell (x)
    if ischar (x)
      ## convert varnames into a cell
      x = mat2cell (x, ones (rows (x), 1));
    else
      error ("tblwrite: %s must be either a char or a cell", name)
    endif
  endif
endfunction

## Tests
%!shared privpath
%! privpath = [fileparts(which('tblwrite')) filesep() 'private'];
## Tests for tbl_delim (private function)
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim (" ");
%! assert (d, " ");
%! assert (err, "");
%! rmpath (privpath);
## Named delimiters
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("space");
%! assert (d, " ");
%! assert (err, "");
%! rmpath (privpath);
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("tab");
%! assert (d, sprintf ("\t"));
%! assert (err, "");
%! rmpath (privpath);
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("comma");
%! assert (d, ",");
%! assert (err, "");
%! rmpath (privpath);
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("semi");
%! assert (d, ";");
%! assert (err, "");
%! rmpath (privpath);
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("bar");
%! assert (d, "|");
%! assert (err, "");
%! rmpath (privpath);
## An arbitrary character
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("x");
%! assert (d, "x");
%! assert (err, "");
%! rmpath (privpath);
## An arbitrary escape string
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ('\r');
%! assert (d, sprintf ('\r'))
%! assert (err, "");
%! rmpath (privpath);
## Errors
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("bars");
%! assert (isnan (d));
%! assert (! isempty (err));
%! rmpath (privpath);
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ("");
%! assert (isnan (d));
%! assert (! isempty (err));
%! rmpath (privpath);
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim (5);
%! assert (isnan (d));
%! assert (! isempty (err));
%! rmpath (privpath);
%!test
%! addpath (privpath,'-end')
%! [d err] = tbl_delim ({"."});
%! assert (isnan (d));
%! assert (! isempty (err));
%! rmpath (privpath);
##
## Tests for tblwrite
%!shared d, v, c
%! d = [1 2;3 4];
%! v = ["a ";"bc"];
%! c = ["de";"f "];
%!test
%! tblwrite (d, v, c, "tblwrite-space.dat");
%! [dt vt ct] = tblread ("tblwrite-space.dat", " ");
%! assert (dt, d);
%! assert (vt, v);
%! assert (ct, c);
%!test
%! tblwrite (d, v, c, "tblwrite-space.dat", " ");
%! [dt vt ct] = tblread ("tblwrite-space.dat", " ");
%! assert (dt, d);
%! assert (vt, v);
%! assert (ct, c);
%!test
%! tblwrite (d, v, c, "tblwrite-space.dat", "space");
%! [dt vt ct] = tblread ("tblwrite-space.dat");
%! assert (dt, d);
%! assert (vt, v);
%! assert (ct, c);
%!test
%! tblwrite (d, v, c, "tblwrite-tab.dat", "tab");
%! [dt vt ct] = tblread ("tblwrite-tab.dat", "tab");
%! assert (dt, d);
%! assert (vt, v);
%! assert (ct, c);
%!test
%! tblwrite (d, v, c, "tblwrite-tab.dat", "\t");
%! [dt vt ct] = tblread ("tblwrite-tab.dat", "\t");
%! assert (dt, d);
%! assert (vt, v);
%! assert (ct, c);
%!test
%! tblwrite (d, v, c, "tblwrite-tab.dat", '\t');
%! [dt vt ct] = tblread ("tblwrite-tab.dat", '\t');
%! assert (dt, d);
%! assert (vt, v);
%! assert (ct, c);