File: ChebyshevPoly.h

package info (click to toggle)
caps 0.9.26-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 924 kB
  • sloc: cpp: 10,867; ansic: 1,324; makefile: 78; python: 38
file content (98 lines) | stat: -rw-r--r-- 2,059 bytes parent folder | download | duplicates (2)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
	dsp/ChebyshevPoly.h
	
	Copyright 2001-2012 Tim Goetze <tim@quitte.de>
	
	http://quitte.de/dsp/

	Chebyshev polynomial calculation.

*/
/*
	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, write to the Free Software
	Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
	02111-1307, USA or point your web browser to http://www.gnu.org.
*/

#ifndef DSP_CHEBYSHEV_POLY_H
#define DSP_CHEBYSHEV_POLY_H

namespace DSP {

template <int N> /* number of harmonics */
class ChebPoly
{
	public:
		float c[N];

		double process (sample_t x)
			{
				int n = N-1;
				double y = c[n];
				
				while (n > 0)
					y *= x,
					y += c[--n];

				return y;
			}

		/* Showing results for cheap pc
		 * Search instead for chebpc
		 *
		 * right on, googlebots!
		 */
		void calculate (float * amplitudes)
			{
				float sv, dd[N], a[N];
				
				for (int i=0; i < N; ++i)
				{
					/* adjust amplitudes -- not quite sure about this. 
					if (amplitudes[i])
						a[i] = amplitudes[i] * sqrt (1./fabs(amplitudes[i]));
					else
						a[i] = amplitudes[i];
					*/
					a[i] = amplitudes[i];
					c[i] = dd[i] = 0;
				}
				
				c[0] = a[N-1];

				for (int j = N-2; j >= 1; --j)
				{
					for (int k = N-j; k >= 1; --k)
					{
						sv = c[k];
						c[k] = 2*c[k-1] - dd[k];
						dd[k] = sv;
					}
					sv = c[0];
					c[0] = -dd[0] + a[j];
					dd[0] = sv;
				}

				for (int j = N-1; j >= 1; --j)
					c[j] = c[j-1] - dd[j];

				c[0] = -dd[0] + .5*a[0];
			}

};

}; /* namespace DSP */

#endif /* DSP_CHEBYSHEV_POLY_H */