File: SPpcXec.html

package info (click to toggle)
libtsp 3r0-1
  • links: PTS
  • area: non-free
  • in suites: potato, woody
  • size: 5,096 kB
  • ctags: 1,798
  • sloc: ansic: 14,464; sh: 1,217; makefile: 182
file content (59 lines) | stat: -rw-r--r-- 1,421 bytes parent folder | download
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
<HTML>
<HEAD>
<TITLE>TSP (libtsp/SP) - SPpcXec</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFACD">
<H2>SPpcXec</H2>
<HR>
<H4>Routine</H4>
<DL>
<DT>
void SPpcXec (const float pc[], float ec[], int Np)
</DL>
<H4>Purpose</H4>
<DL>
<DT>
Convert predictor coefficients to prediction error filter coeffients
</DL>
<H4>Description</H4>
The error filter coefficients are related to the predictor filter
coefficients by,
<PRE>
  ec[0]  = 1
  ec[1]  = -pc[0]
        ...
  ec[Np] = -pc[Np-1]
</PRE>
<P>
Predictor coefficients are usually expressed algebraically as vectors with
1-offset indexing.  The correspondence to the 0-offset C-arrays is as
follows.
<PRE>
  p(1) &lt;==&gt; pc[0]       predictor coefficient corresponding to lag 1
  p(i) &lt;==&gt; pc[i-1]     1 &lt;= i &lt; Np
</PRE>
<H4>Parameters</H4>
<DL>
<DT>
 -&gt; const float pc[]
<DD>
Vector of predictor coefficients (Np values).  These are the coefficients
of the predictor filter, with pc[0] being the predictor coefficient
corresponding to lag 1, and pc[Np-1] corresponding to lag Np.
<DT>
&lt;-  float ec[]
<DD>
Prediction error (residual) filter coefficients (Np + 1 values)
<DT>
 -&gt; int Np
<DD>
Number of predictor coefficients (Np can be zero)
</DL>
<H4>Author / revision</H4>
P. Kabal  Copyright (C) 1996
/ Revision 1.5  1996/05/06
<P>
<HR>
Main Index <A HREF="../libtsp.html">libtsp</A>
</BODY>
</HTML>