1mlib_SignalCepstral_F32(3MLmIeBd)iaLib Library Functimolnisb_SignalCepstral_F32(3MLIB)
2
3
4
6 mlib_SignalCepstral_F32 - perform cepstral analysis
7
9 cc [ flag... ] file... -lmlib [ library... ]
10 #include <mlib.h>
11
12 mlib_status mlib_SignalCepstral_F32(mlib_f32 *cepst,
13 const mlib_f32 *signal, void *state);
14
15
17 The mlib_SignalCepstral_F32() function performs cepstral analysis.
18
19
20 The basic operations to compute the cepstrum is shown below.
21
22 +-----------+ +--------+ +-----------+
23 | Fourier | | | | Inverse |
24 ----->| |----->| log|*| |------>| Fourier |----->
25 x(n) | Transform | X(k) | | X'(k) | Transform | c(n)
26 +-----------+ +--------+ +-----------+
27
28
29
30 where x(n) is the input signal and c(n) is its cepstrum. In mathemat‐
31 ics, they are
32
33 N-1 2*PI*k*n
34 X(k) = SUM x(n) * exp(-j*----------)
35 n=0 N
36
37 X'(k) = log|X(k)|
38
39 1 N-1 2*PI*k*n
40 c(n) = --- SUM X'(k) * exp(j*----------)
41 N n=0 N
42
43
44
45 Since X'(k) is real and even (symmetric), i.e.
46
47 X'(k) = X'(N - k)
48
49
50
51 the c(n) is real and the equation becomes Cosine transform.
52
53 1 N-1 2*PI*k*n
54 c(n) = --- SUM X'(k) * cos(----------)
55 N n=0 N
56
57
58
59 The cepstral coefficients in LPC is a special case of the above.
60
61
62 See Digital Signal Processing by Alan V. Oppenheim and Ronald W.
63 Schafer, Prentice Hall, 1974.
64
65
66 See Fundamentals of Speech Recognition by Lawrence Rabinerand Biing-
67 Hwang Juang, Prentice Hall, 1993.
68
70 The function takes the following arguments:
71
72 cepst The cepstral coefficients.
73
74
75 signal The input signal vector.
76
77
78 state Pointer to the internal state structure.
79
80
82 The function returns MLIB_SUCCESS if successful. Otherwise it returns
83 MLIB_FAILURE.
84
86 See attributes(5) for descriptions of the following attributes:
87
88
89
90
91 ┌─────────────────────────────┬─────────────────────────────┐
92 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
93 ├─────────────────────────────┼─────────────────────────────┤
94 │Interface Stability │Committed │
95 ├─────────────────────────────┼─────────────────────────────┤
96 │MT-Level │MT-Safe │
97 └─────────────────────────────┴─────────────────────────────┘
98
100 mlib_SignalCepstralInit_F32(3MLIB), mlib_SignalCepstralFree_F32(3MLIB),
101 attributes(5)
102
103
104
105SunOS 5.11 2 Mar 2007 mlib_SignalCepstral_F32(3MLIB)