]> Creatis software - CreaPhase.git/blob - octave_packages/tsa-4.2.4/ac2rc.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / tsa-4.2.4 / ac2rc.m
1 function [RC,efinal] = ac2rc(AC);
2 % converts the autocorrelation function into reflection coefficients 
3 % [RC,r0] = ac2rc(r)
4 %
5 % see also ACOVF ACORF AR2RC RC2AR DURLEV AC2POLY, POLY2RC, RC2POLY, RC2AC, AC2RC, POLY2AC
6
7
8 %       $Id: ac2rc.m 5090 2008-06-05 08:12:04Z schloegl $
9 %       Copyright (C) 1998-2002,2008 by Alois Schloegl <a.schloegl@ieee.org>
10 %
11 %    This program is free software: you can redistribute it and/or modify
12 %    it under the terms of the GNU General Public License as published by
13 %    the Free Software Foundation, either version 3 of the License, or
14 %    (at your option) any later version.
15 %
16 %    This program is distributed in the hope that it will be useful,
17 %    but WITHOUT ANY WARRANTY; without even the implied warranty of
18 %    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 %    GNU General Public License for more details.
20 %
21 %    You should have received a copy of the GNU General Public License
22 %    along with this program.  If not, see <http://www.gnu.org/licenses/>.
23
24
25
26 if all(size(AC))>1,
27         fprintf(2,'Error AC2RC: "r" must be a vector\n');
28         return;
29 end;
30
31 mfilename='AC2RC';
32 if ~exist('durlev','file')
33         fprintf(2,'Error %s: DURLEV.M not found. \n Download TSA toolbox from http://www.dpmi.tu-graz.ac.at/~schloegl/matlab/tsa/\n',mfilename);
34         return;
35 end;
36
37 [AR,RC,PE] = durlev(AC(:).');
38 RC=-RC;
39 efinal=AC(1);