This file is indexed.

/usr/share/octave/packages/io-2.4.5/write_namelist.m is in octave-io 2.4.5-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
## Copyright (C) 2011-2016 Darien Pardinas Diaz <darien.pardinas-diaz@monash.edu>
##
## 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/>.

## WRITE_NAMELIST(S, FILENAME) writes a namelist data structure S to a
## file FILENAME. S should follow the following structure:
##
##                  |--VAR1
##                  |--VAR2
##     |-- NMLST_A--|...
##     |            |--VARNa
##     |
##     |            |--VAR1
##     |-- NMLST_B--|--VAR2
##     |            |...
## S --|     ...    |--VARNb
##     |
##     |            |--VAR1
##     |-- NMLST_M--|--VAR2
##                  |...
##                  |--VARNm
## 
## Notes: Only supports variables of type:
## Scalars, vectors and 2D numeric arrays (integers and floating points)
## Scalars and 1D boolean arrays specified as '.true.' and '.false.' strings
## Single and 1D arrays of strings
##
## Example:
##     NMLST = read_namelist ("OPTIONS.nam");
##     NMLST.NAM_FRAC.XUNIF_NATURE = 0.1;
##     write_namelist(NMlST, "MOD_OPTIONS.nam");

## Written by:     Darien Pardinas Diaz (darien.pardinas-diaz@monash.edu)
## Version:        1.0
## Date:           16 Dec 2011
##
## Released under GPL License 30/3/2013

function [ ret ] = write_namelist (S, filename)

  fid = fopen (filename, "w");
  name_lists = fieldnames (S);
  n_name_lists = length(name_lists);

  for ii = 1:n_name_lists,
    ## Write individual namelist records
    fprintf (fid, "&%s\n", name_lists{ii});
    rcrds = S.(name_lists{ii});

    rcrds_name = fieldnames(rcrds);
    n_rcrds = length(rcrds_name);

    for jj = 1:n_rcrds,
      var = rcrds.(rcrds_name{jj});
      ## Find variable type...
      if (iscell (var)),
        fprintf (fid, "   %s =", rcrds_name{jj});
        if (strcmp (var{1}, ".true.") || strcmp (var{1}, "'.false.")),    
          for kk = 1:length (var),
            fprintf (fid, " %s,", var{kk});    
          endfor
        else
          for kk = 1:length (var),
            fprintf (fid, " %s,", [ "'" var{kk} "'" ]);    
          endfor
        endif
        fprintf (fid, "%s\n", "");
      else
        [r, c] = size (var);
        if (r == 1 || c == 1)
          ## Variable is a scalar or vector
          fprintf (fid, "   %s =", rcrds_name{jj});
          if (iscomplex (var))
            for i=1:length(var)
              fprintf (fid, " (%g,%g),", real(var(i)), imag(var(i)));
            endfor
          else
            fprintf (fid, " %g,", var);
          endif
          fprintf (fid, "%s\n", "");
        else
          ## Variable is a two dimensional array
          for kk = 1:r,
            fprintf (fid, "   %s(%i,:) =", rcrds_name{jj}, kk);
            fprintf (fid, " %g,", var(kk,:));
            fprintf (fid, "%s\n", ""); 
          endfor
        endif
      endif
    endfor
    fprintf (fid, "%s\n", "/");
  endfor

  fclose (fid);

endfunction