Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_reverse.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2005 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gr_reverse.h>
28
29
30 std::vector<float> 
31 gr_reverse (const std::vector<float> &taps)
32 {
33   int size = taps.size ();
34   std::vector<float> new_taps(size);
35
36   if (size == 0)
37     return new_taps;
38
39   for (int i = 0; i < size; i++)
40     new_taps[i] = taps[size - i - 1];
41
42   return new_taps;
43 }
44
45
46 std::vector<gr_complex> 
47 gr_reverse (const std::vector<gr_complex> &taps)
48 {
49   int size = taps.size ();
50   std::vector<gr_complex> new_taps(size);
51
52   if (size == 0)
53     return new_taps;
54
55   for (int i = 0; i < size; i++)
56     new_taps[i] = taps[size - i - 1];
57
58   return new_taps;
59 }
60