/usr/share/octave/packages/signal-1.3.2/cceps.m is in octave-signal 1.3.2-5.
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 | ## Copyright (C) 1994 Dept of Probability Theory and Statistics TU Wien <Andreas.Weingessel@ci.tuwien.ac.at>
##
## 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} {} cceps (@var{x})
## @deftypefnx {Function File} {} cceps (@var{x}, @var{correct})
## Return the complex cepstrum of the vector @var{x}.
## If the optional argument @var{correct} has the value 1, a correction
## method is applied. The default is not to do this.
## @end deftypefn
## Author: Andreas Weingessel <Andreas.Weingessel@ci.tuwien.ac.at>
## Apr 1, 1994
## Last modified by AW on Nov 8, 1994
function cep = cceps (x, c)
if (nargin == 1)
c = 0;
elseif (nargin != 2)
print_usage;
endif
[nr, nc] = size (x);
if (nc != 1)
if (nr == 1)
x = x';
nr = nc;
else
error ("cceps: x must be a vector");
endif
endif
bad_signal_message = ["cceps: bad signal x, ", ...
"some Fourier coefficients are zero."];
F = fft (x);
if (min (abs (F)) == 0)
error (bad_signal_message);
endif
## determine if correction necessary
half = fix (nr / 2);
cor = 0;
if (2 * half == nr)
cor = (c && (real (F (half + 1)) < 0));
if (cor)
F = fft (x(1:nr-1))
if (min (abs (F)) == 0)
error (bad_signal_message);
endif
endif
endif
cep = fftshift (ifft (log (F)));
## make result real
if (c)
cep = real (cep);
if (cor)
## make cepstrum of same length as input vector
cep (nr) = 0;
endif
endif
endfunction
|