GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
squash_ff.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008,2012 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_WAVELET_SQUASH_FF_H
12 #define INCLUDED_WAVELET_SQUASH_FF_H
13 
14 #include <gnuradio/sync_block.h>
15 #include <gnuradio/wavelet/api.h>
16 
17 namespace gr {
18 namespace wavelet {
19 
20 /*!
21  * \brief Implements cheap resampling of spectrum directly from
22  * spectral points, using gsl interpolation
23  * \ingroup misc
24  */
25 class WAVELET_API squash_ff : virtual public sync_block
26 {
27 public:
28  // gr::wavelet::squash_ff::sptr
29  typedef std::shared_ptr<squash_ff> sptr;
30 
31  /*!
32  * \param igrid
33  * \param ogrid
34  */
35  static sptr make(const std::vector<float>& igrid, const std::vector<float>& ogrid);
36 };
37 
38 } /* namespace wavelet */
39 } /* namespace gr */
40 
41 #endif
synchronous 1:1 input to output with history
Definition: sync_block.h:26
Implements cheap resampling of spectrum directly from spectral points, using gsl interpolation.
Definition: squash_ff.h:26
std::shared_ptr< squash_ff > sptr
Definition: squash_ff.h:29
static sptr make(const std::vector< float > &igrid, const std::vector< float > &ogrid)
#define WAVELET_API
Definition: gr-wavelet/include/gnuradio/wavelet/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29