root/library/bdm/base/itpp/itsignal.h @ 1409

Revision 1407, 2.1 kB (checked in by sindj, 13 years ago)

Pridany soucasti IT++. signal pro signal processing a stat pro statistiku. JS

Line 
1/*!
2 * \file
3 * \brief Include file for the IT++ signal-processing module
4 * \author Adam Piatyszek
5 *
6 * -------------------------------------------------------------------------
7 *
8 * Copyright (C) 1995-2010  (see AUTHORS file for a list of contributors)
9 *
10 * This file is part of IT++ - a C++ library of mathematical, signal
11 * processing, speech processing, and communications classes and functions.
12 *
13 * IT++ is free software: you can redistribute it and/or modify it under the
14 * terms of the GNU General Public License as published by the Free Software
15 * Foundation, either version 3 of the License, or (at your option) any
16 * later version.
17 *
18 * IT++ is distributed in the hope that it will be useful, but WITHOUT ANY
19 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
21 * details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with IT++.  If not, see <http://www.gnu.org/licenses/>.
25 *
26 * -------------------------------------------------------------------------
27 */
28
29#ifndef ITSIGNAL_H
30#define ITSIGNAL_H
31
32/*!
33 * \defgroup signal Signal Processing (SP) Module
34 * @{
35 */
36
37//! \defgroup detsource Deterministic Sources
38//! \defgroup fastica Fast Independent Component Analysis
39//! \defgroup filters Filtering
40//! \defgroup poly Polynomial Functions
41//! \defgroup resampling Resampling Functions
42//! \defgroup sigproc Miscellaneous SP Functions
43
44/*!
45 * \defgroup transforms Transforms
46 * @{
47 */
48
49//! \defgroup dct Discrete Cosine Transform (DCT)
50//! \defgroup fft Fast Fourier Transform (FFT)
51//! \defgroup fht Fast Hadamard Transform (FHT)
52
53/*!
54 * @}
55 */
56
57//! \defgroup windfunc Windowing
58
59/*!
60 * @}
61 */
62
63#include <itpp/itbase.h>
64#include <itpp/signal/fastica.h>
65#include <itpp/signal/filter.h>
66#include <itpp/signal/filter_design.h>
67#include <itpp/signal/freq_filt.h>
68#include <itpp/signal/poly.h>
69#include <itpp/signal/resampling.h>
70#include <itpp/signal/source.h>
71#include <itpp/signal/sigfun.h>
72#include <itpp/signal/transforms.h>
73#include <itpp/signal/window.h>
74
75#endif // #ifndef ITSIGNAL_H
Note: See TracBrowser for help on using the browser.