]> Creatis software - CreaPhase.git/blob - octave_packages/tsa-4.2.4/rc2ac.m
Add a useful package (from Source forge) for octave
[CreaPhase.git] / octave_packages / tsa-4.2.4 / rc2ac.m
1 function ACF=rc2ac(RC,R0)
2 % converts reflection coefficients to autocorrelation sequence
3 % [R] = rc2ac(RC,R0);
4 %
5 % see also ACOVF ACORF AR2RC RC2AR DURLEV AC2POLY, POLY2RC, RC2POLY, RC2AC, AC2RC, POLY2AC
6
7
8 %       $Id: rc2ac.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 fprintf(2,'ERROR: RC2AC does not work yet. Sorry\n');
26 return;
27
28 if all(size(RC)>1),
29         fprintf(2,'Error RC2AC: "K" must be a vector\n');
30         return;
31 end;
32
33 mfilename='RC2AC';
34 if ~exist('rc2ar','file')
35         fprintf(2,'Error %s: RC2AR.M not found. \n Download TSA toolbox from http://www.dpmi.tu-graz.ac.at/~schloegl/matlab/tsa/\n',mfilename);
36         return;
37 end;
38
39 [AR,RC,PE] = rc2ar(RC(:).');
40
41 ACF=cumprod(ones(size(RC))-RC.^2,2);
42 ACF = ACF./ACF(:,ones(1,size(ACF,2)));
43
44 if nargin>1
45         ACF=ACF*R0;
46 end;