/usr/share/octave/packages/communications-1.2.0/rsencof.m is in octave-communications-common 1.2.0-2.
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 | ## Copyright (C) 2003 David Bateman
##
## 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} {} rsencof (@var{in}, @var{out})
## @deftypefnx {Function File} {} rsencof (@var{in}, @var{out}, @var{t})
## @deftypefnx {Function File} {} rsencof (@dots{}, @var{pad})
##
## Encodes an ASCII file using a Reed-Solomon coder. The input file is
## defined by @var{in} and the result is written to the output file @var{out}.
## The type of coding to use is determined by whether the input file is 7-
## or 8-bit. If the input file is 7-bit, the default coding is [127,117].
## while the default coding for an 8-bit file is a [255, 235]. This allows
## for 5 or 10 error characters in 127 or 255 symbols to be corrected
## respectively. The number of errors that can be corrected can be overridden
## by the variable @var{t}.
##
## If the file is not an integer multiple of the message size (127 or 255)
## in length, then the file is padded with the EOT (ASCII character 4)
## characters before coding. Whether these characters are written to the
## output is defined by the @var{pad} variable. Valid values for @var{pad}
## are "pad" (the default) and "nopad", which write or not the padding
## respectively.
##
## @seealso{rsdecof}
## @end deftypefn
function rsencof (in, out, varargin)
if (nargin < 2 || nargin > 4)
print_usage ();
endif
if (!ischar (in) || !ischar (out))
error ("rsencof: IN and OUT must be strings");
endif
t = 0;
pad = 1;
for i = 1:length (varargin)
arg = varargin{i};
if (ischar (arg))
if (strcmp (arg, "pad"))
pad = 1;
elseif (strcmp (arg, "nopad"))
pad = 0;
else
error ("rsencof: unrecognized string argument");
endif
else
if (! (isscalar (t) && t == fix (d) && t > 0))
error ("rsencof: T must be a positive integer");
endif
endif
endfor
try fid = fopen (in, "r");
catch
error ("rsencof: could not open '%s' for reading", in);
end_try_catch
[msg, count] = fread (fid, Inf, "char");
fclose (fid);
is8bit = (max (msg) > 127);
if (is8bit)
m = 8;
n = 255;
if (t == 0)
t = 10;
endif
else
m = 7;
n = 127;
if (t == 0)
t = 5;
endif
endif
k = n - 2 * t;
ncodewords = ceil (count / k);
npad = k * ncodewords - count;
msg = reshape ([msg ; 4 * ones(npad, 1)], k, ncodewords)';
code = rsenc (gf (msg, m), n, k, "beginning")';
code = code(:);
try fid = fopen (out, "w");
catch
error ("rsencof: could not open '%s' for writing", out);
end_try_catch
if (pad)
fwrite (fid, code, "char");
else
fwrite (fid, code(1:(ncodewords*n-npad)), "char");
endif
fclose (fid);
endfunction
%% Test input validation
%!error rsencof ()
%!error rsencof (1)
%!error rsencof (1, 2, 3, 4, 5)
%!error rsencof (1, 2)
%!error rsencof ("in", "out", 0)
%!error rsencof ("in", "out", "invalid")
|