/usr/share/octave/packages/communications-1.2.0/bi2de.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 | ## Copyright (C) 2001 Laurent Mazet
##
## 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} {@var{d} =} bi2de (@var{b})
## @deftypefnx {Function File} {@var{d} =} bi2de (@var{b}, @var{f})
## @deftypefnx {Function File} {@var{d} =} bi2de (@var{b}, @var{p})
## @deftypefnx {Function File} {@var{d} =} bi2de (@var{b}, @var{p}, @var{f})
##
## Convert bit matrix to a vector of integers
##
## Each row of the matrix @var{b} is treated as a single integer represented
## in binary form. The elements of @var{b}, must therefore be '0' or '1'
##
## If @var{p} is defined then it is treated as the base of the decomposition
## and the elements of @var{b} must then lie between '0' and 'p-1'.
##
## The variable @var{f} defines whether the first or last element of @var{b}
## is considered to be the most-significant. Valid values of @var{f} are
## "right-msb" or "left-msb". By default @var{f} is "right-msb".
##
## @seealso{de2bi}
## @end deftypefn
function d = bi2de (b, p, f)
switch (nargin)
case 1
p = 2;
f = "right-msb";
case 2
if (ischar (p))
f = p;
p = 2;
else
f = "right-msb";
endif
case 3
if (ischar (p))
tmp = f;
f = p;
p = tmp;
endif
otherwise
print_usage ();
endswitch
if (! (all (b(:) == fix (b(:))) && all (b(:) >= 0) && all (b(:) < p)))
error ("bi2de: all elements of B must be integers in the range [0,P-1]");
endif
if (strcmp (f, "left-msb"))
b = b(:,size (b, 2):-1:1);
elseif (!strcmp (f, "right-msb"))
error ("bi2de: invalid option '%s'", f);
endif
if (length (b) == 0)
d = [];
else
d = b * (p .^ [0:(columns (b) - 1)]');
endif
endfunction
%!shared x
%! x = randi ([0 1], 100, 16);
%!assert (bi2de (0), 0)
%!assert (bi2de (1), 1)
%!assert (bi2de (ones (1, 8)), 255)
%!assert (bi2de ([7 7 7 7], 8), 4095)
%!assert (size (bi2de (x)), [100 1])
%!assert (bi2de (x, "right-msb"), bi2de (x))
%!assert (bi2de (x, "left-msb"), bi2de (fliplr (x)))
%% Test input validation
%!error bi2de ()
%!error bi2de (1, 2, 3, 4)
%!error bi2de (1, 2, 3)
%!error bi2de (1, 2, "invalid")
%!error bi2de (0.1)
%!error bi2de (-1)
%!error bi2de (2)
%!error bi2de (7, 6)
|