This file is indexed.

/usr/share/octave/packages/3.2/statistics-1.0.10/ff2n.m is in octave-statistics 1.0.10-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
## -*- texinfo -*-
## @deftypefn {Function File} ff2n (@var{n})
## full-factor design with n binary terms.
##
## @seealso {fullfact}
## @end deftypefn

## This program is public domain

function A=ff2n(n) 
  A = fullfact (2 * ones (1,n)) - 1;